From 888387dfa2780bed4bb2ad4f6fb8ab51c637fa0c Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 20 May 2023 12:27:14 -0600 Subject: [PATCH] GUI: Adjust relaunch size --- resources/wx_gui/gui_support.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/wx_gui/gui_support.py b/resources/wx_gui/gui_support.py index 5a1f003de..e12ac24c5 100644 --- a/resources/wx_gui/gui_support.py +++ b/resources/wx_gui/gui_support.py @@ -265,10 +265,10 @@ class RelaunchApplicationAsRoot: ] self.frame.DestroyChildren() - self.frame.SetSize(400, 300) + self.frame.SetSize(300, 300) # Header - header = wx.StaticText(self.frame, label="Relaunching as root") + header = wx.StaticText(self.frame, label="Relaunching as root", pos=(-1, 5)) header.SetFont(wx.Font(19, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, ".AppleSystemUIFont")) header.Centre(wx.HORIZONTAL)