From df5e7525c2bc1b538f292055eae67597624fa777 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 20 May 2023 16:43:29 -0600 Subject: [PATCH] GUI: Better match format --- resources/wx_gui/gui_macos_installer_flash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/wx_gui/gui_macos_installer_flash.py b/resources/wx_gui/gui_macos_installer_flash.py index 5cc2d1d9c..f348541dc 100644 --- a/resources/wx_gui/gui_macos_installer_flash.py +++ b/resources/wx_gui/gui_macos_installer_flash.py @@ -244,7 +244,7 @@ class macOSInstallerFlashFrame(wx.Frame): warning_label.Centre(wx.HORIZONTAL) # Label: Bytes Written: 0 MB - bytes_written_label = wx.StaticText(self, label="Bytes Written: 0000.0 MB", pos=(-1, warning_label.GetPosition()[1] + warning_label.GetSize()[1] + 5)) + bytes_written_label = wx.StaticText(self, label="Bytes Written: 0.00 MB", pos=(-1, warning_label.GetPosition()[1] + warning_label.GetSize()[1] + 5)) bytes_written_label.SetFont(wx.Font(13, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, ".AppleSystemUIFont")) bytes_written_label.Centre(wx.HORIZONTAL)