Skip to content

Commit

Permalink
Increase size of inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Nov 13, 2024
1 parent bbe3e93 commit 362aebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/targetProfileEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(self, parent):
super().__init__(
parent, id=wx.ID_ANY, title=_t("Target Profile Editor"), resizeable=True,
# Dropdown list widget is scaled to its longest content line on GTK, adapt to that
size=wx.Size(550, 240) if "wxGTK" in wx.PlatformInfo else wx.Size(380, 240))
size=wx.Size(630, 240) if "wxGTK" in wx.PlatformInfo else wx.Size(450, 240))

self.mainFrame = gui.mainFrame.MainFrame.getInstance()
self.block = False
Expand All @@ -149,7 +149,7 @@ def __init__(self, parent):
resistEditSizer = wx.BoxSizer(wx.HORIZONTAL)
resistEditSizer.AddStretchSpacer()

defSize = wx.Size(50, -1)
defSize = wx.Size(70, -1)

for type_ in self.DAMAGE_TYPES:
leftPad = 25 if type_ != list(self.DAMAGE_TYPES)[0] else 0
Expand Down

0 comments on commit 362aebe

Please sign in to comment.