mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-15 11:50:00 +10:00
gui_main.py: Fix spacing
This commit is contained in:
@@ -18,6 +18,8 @@
|
||||
- Backend changes:
|
||||
- macos_installer_handler.py:
|
||||
- Expand OS support for IA parsing in SUCatalog
|
||||
- gui_main.py:
|
||||
- Fix spacing regression introduced with `.AppleSystemUIFont` implementation
|
||||
- Increment Binaries:
|
||||
- PatcherSupportPkg 0.9.6 - release
|
||||
- Build Server Changes:
|
||||
|
||||
@@ -2112,6 +2112,7 @@ class wx_python_gui:
|
||||
def format_usb_menu(self, installer_name, installer_path):
|
||||
self.frame.DestroyChildren()
|
||||
logging.info(installer_path)
|
||||
self.frame.SetSize(370, -1)
|
||||
|
||||
# Header
|
||||
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):
|
||||
self.frame.DestroyChildren()
|
||||
self.frame.SetSize(500, -1)
|
||||
self.frame.SetSize(520, -1)
|
||||
# Header
|
||||
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"))
|
||||
|
||||
Reference in New Issue
Block a user