Fixed announce dialog style

This commit is contained in:
Mark Qvist 2022-10-09 16:48:09 +02:00
parent 6db088f285
commit 5d573b24f2

View File

@ -452,12 +452,12 @@ class SidebandApp(MDApp):
def announce_now_action(self, sender=None): def announce_now_action(self, sender=None):
self.sideband.lxmf_announce() self.sideband.lxmf_announce()
yes_button = MDFlatButton( yes_button = MDRectangleFlatButton(text="OK",font_size=sp(18))
text="OK",
)
dialog = MDDialog( dialog = MDDialog(
text="An announce for your LXMF destination was sent on all available interfaces", title="Announce Sent",
text="Your LXMF address has been announced on all available interfaces",
buttons=[ yes_button ], buttons=[ yes_button ],
# elevation=0, # elevation=0,
) )