GUI Settings: Fix formatting on pre-Big Sur UI

This commit is contained in:
Mykola Grymalyuk
2023-05-18 09:44:46 -06:00
parent 5a6407ab14
commit 46d2a86e2f

View File

@@ -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"))