From 5d573b24f2d2fcbdeec3e8a76702c176e1b184f3 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sun, 9 Oct 2022 16:48:09 +0200 Subject: [PATCH] Fixed announce dialog style --- sbapp/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sbapp/main.py b/sbapp/main.py index cc28d24..7619bb2 100644 --- a/sbapp/main.py +++ b/sbapp/main.py @@ -452,12 +452,12 @@ class SidebandApp(MDApp): def announce_now_action(self, sender=None): self.sideband.lxmf_announce() - yes_button = MDFlatButton( - text="OK", - ) + yes_button = MDRectangleFlatButton(text="OK",font_size=sp(18)) + 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 ], # elevation=0, )