From 46d2a86e2f9effd1523d43457d5060fecc3d5cc3 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Thu, 18 May 2023 09:44:46 -0600 Subject: [PATCH] GUI Settings: Fix formatting on pre-Big Sur UI --- resources/wx_gui/gui_settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/wx_gui/gui_settings.py b/resources/wx_gui/gui_settings.py index 9142b5463..d558f74fc 100644 --- a/resources/wx_gui/gui_settings.py +++ b/resources/wx_gui/gui_settings.py @@ -869,8 +869,7 @@ class SettingsFrame(wx.Frame): self.sip_configured_label = sip_configured_label # Label: SIP Status - sip_booted_label = wx.StaticText(panel, label=f"Currently booted SIP: {hex(py_sip_xnu.SipXnu().get_sip_status().value)}", pos=(sip_configured_label.GetPosition()[0] + 34 - , sip_configured_label.GetPosition()[1] + 20)) + sip_booted_label = wx.StaticText(panel, label=f"Currently booted SIP: {hex(py_sip_xnu.SipXnu().get_sip_status().value)}", pos=(sip_configured_label.GetPosition()[0], sip_configured_label.GetPosition()[1] + 20)) sip_booted_label.SetFont(wx.Font(13, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, ".AppleSystemUIFont"))