Skip to content

Commit 362aebe

Browse files
committed
Increase size of inputs
1 parent bbe3e93 commit 362aebe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gui/targetProfileEditor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __init__(self, parent):
130130
super().__init__(
131131
parent, id=wx.ID_ANY, title=_t("Target Profile Editor"), resizeable=True,
132132
# Dropdown list widget is scaled to its longest content line on GTK, adapt to that
133-
size=wx.Size(550, 240) if "wxGTK" in wx.PlatformInfo else wx.Size(380, 240))
133+
size=wx.Size(630, 240) if "wxGTK" in wx.PlatformInfo else wx.Size(450, 240))
134134

135135
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
136136
self.block = False
@@ -149,7 +149,7 @@ def __init__(self, parent):
149149
resistEditSizer = wx.BoxSizer(wx.HORIZONTAL)
150150
resistEditSizer.AddStretchSpacer()
151151

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

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

0 commit comments

Comments
 (0)