From cb6f294d3544cb0c9d17d7e76e5e36510c6f1e7f Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 20 May 2023 09:52:46 -0600 Subject: [PATCH] GUI: Adjust ComboBox width --- resources/wx_gui/gui_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/wx_gui/gui_settings.py b/resources/wx_gui/gui_settings.py index 8b608eda1..8b4a4bc82 100644 --- a/resources/wx_gui/gui_settings.py +++ b/resources/wx_gui/gui_settings.py @@ -173,7 +173,7 @@ class SettingsFrame(wx.Frame): height += title.GetSize()[1] + 10 # Add combobox, and description underneath - combobox = wx.ComboBox(panel, value=setting_info["value"], pos=(width + 25, 10 + height), choices=setting_info["choices"], size = (130,-1)) + combobox = wx.ComboBox(panel, value=setting_info["value"], pos=(width + 25, 10 + height), choices=setting_info["choices"], size = (150,-1)) combobox.SetFont(wx.Font(13, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, ".AppleSystemUIFont")) # combobox.Bind(wx.EVT_COMBOBOX, lambda event, variable=setting: self.on_combobox(event, variable)) if "override_function" in setting_info: