mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 14:10:51 +10:00
gui_main.py: Fix spacing
This commit is contained in:
@@ -18,6 +18,8 @@
|
|||||||
- Backend changes:
|
- Backend changes:
|
||||||
- macos_installer_handler.py:
|
- macos_installer_handler.py:
|
||||||
- Expand OS support for IA parsing in SUCatalog
|
- Expand OS support for IA parsing in SUCatalog
|
||||||
|
- gui_main.py:
|
||||||
|
- Fix spacing regression introduced with `.AppleSystemUIFont` implementation
|
||||||
- Increment Binaries:
|
- Increment Binaries:
|
||||||
- PatcherSupportPkg 0.9.6 - release
|
- PatcherSupportPkg 0.9.6 - release
|
||||||
- Build Server Changes:
|
- Build Server Changes:
|
||||||
|
|||||||
@@ -2112,6 +2112,7 @@ class wx_python_gui:
|
|||||||
def format_usb_menu(self, installer_name, installer_path):
|
def format_usb_menu(self, installer_name, installer_path):
|
||||||
self.frame.DestroyChildren()
|
self.frame.DestroyChildren()
|
||||||
logging.info(installer_path)
|
logging.info(installer_path)
|
||||||
|
self.frame.SetSize(370, -1)
|
||||||
|
|
||||||
# Header
|
# Header
|
||||||
self.header = wx.StaticText(self.frame, label="Format USB")
|
self.header = wx.StaticText(self.frame, label="Format USB")
|
||||||
@@ -2184,7 +2185,7 @@ class wx_python_gui:
|
|||||||
|
|
||||||
def format_usb_progress(self, disk, installer_name, installer_path):
|
def format_usb_progress(self, disk, installer_name, installer_path):
|
||||||
self.frame.DestroyChildren()
|
self.frame.DestroyChildren()
|
||||||
self.frame.SetSize(500, -1)
|
self.frame.SetSize(520, -1)
|
||||||
# Header
|
# Header
|
||||||
self.header = wx.StaticText(self.frame, label=f"Creating Installer: {installer_name}")
|
self.header = wx.StaticText(self.frame, label=f"Creating Installer: {installer_name}")
|
||||||
self.header.SetFont(wx.Font(19, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, ".AppleSystemUIFont"))
|
self.header.SetFont(wx.Font(19, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, ".AppleSystemUIFont"))
|
||||||
|
|||||||
Reference in New Issue
Block a user