Commit 89ef35b34b4f7509a86d4835fdb9ac3da0bc7d90
1 parent
d386f75a
Exists in
master
and in
2 other branches
Fixed problem with create new surface dialog
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -1151,7 +1151,7 @@ class SurfaceCreationOptionsPanel(wx.Panel): |
1151 | 1151 | flag_link = wx.EXPAND|wx.GROW|wx.ALL |
1152 | 1152 | flag_button = wx.ALL | wx.EXPAND| wx.GROW |
1153 | 1153 | |
1154 | - fixed_sizer = wx.FlexGridSizer(rows=2, cols=2, hgap=10, vgap=5) | |
1154 | + fixed_sizer = wx.FlexGridSizer(rows=3, cols=2, hgap=10, vgap=5) | |
1155 | 1155 | fixed_sizer.AddGrowableCol(0, 1) |
1156 | 1156 | fixed_sizer.AddMany([ (label_surface, 1, flag_link, 0), |
1157 | 1157 | (text, 1, flag_button, 0), | ... | ... |