Commit 2014adfca6deb6692952e5062ea2397fd58ec13a
1 parent
21030b69
Exists in
master
Added an spacing between backend label and combobox
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/brain_seg_dialog.py
... | ... | @@ -93,7 +93,7 @@ class BrainSegmenterDialog(wx.Dialog): |
93 | 93 | sizer_backends = wx.BoxSizer(wx.HORIZONTAL) |
94 | 94 | label_1 = wx.StaticText(self, wx.ID_ANY, _("Backend")) |
95 | 95 | sizer_backends.Add(label_1, 0, wx.ALIGN_CENTER, 0) |
96 | - sizer_backends.Add(self.cb_backends, 1, wx.LEFT, 0) | |
96 | + sizer_backends.Add(self.cb_backends, 1, wx.LEFT, 5) | |
97 | 97 | main_sizer.Add(sizer_backends, 0, wx.ALL | wx.EXPAND, 5) |
98 | 98 | main_sizer.Add(self.chk_use_gpu, 0, wx.ALL, 5) |
99 | 99 | sizer_devices = wx.BoxSizer(wx.HORIZONTAL) | ... | ... |