From f447a151d1d7ef401307995c4bcf555c3b39cb02 Mon Sep 17 00:00:00 2001 From: Thiago Franco de Moraes Date: Fri, 19 Aug 2016 10:00:45 -0300 Subject: [PATCH] Better gui --- invesalius/gui/dialogs.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/invesalius/gui/dialogs.py b/invesalius/gui/dialogs.py index 7bf0ae4..9c00fc4 100644 --- a/invesalius/gui/dialogs.py +++ b/invesalius/gui/dialogs.py @@ -1885,12 +1885,12 @@ class FFillOptionsDialog(wx.Dialog): self.conect3D.SetSelection(0) self.config.con_3d = 6 - sizer.Add(wx.StaticText(self, -1, _(u"Parameters")), (0, 0), flag=wx.TOP | wx.LEFT | wx.RIGHT, border=5) + sizer.Add(wx.StaticText(self, -1, _(u"Parameters")), (0, 0), flag=wx.TOP|wx.LEFT|wx.RIGHT, border=7) sizer.AddStretchSpacer((0, 5)) - sizer.Add(self.target_2d, (1, 0), (1, 3)) - sizer.Add(self.target_3d, (2, 0), (1, 3)) - sizer.Add(self.conect2D, (3, 0), flag=wx.TOP | wx.LEFT | wx.RIGHT, border=5) - sizer.Add(self.conect3D, (4, 0), flag=wx.TOP | wx.LEFT | wx.RIGHT, border=5) + sizer.Add(self.target_2d, (1, 0), (1, 3), flag=wx.LEFT|wx.RIGHT, border=9) + sizer.Add(self.target_3d, (2, 0), (1, 3), flag=wx.LEFT|wx.RIGHT, border=9) + sizer.Add(self.conect2D, (3, 0), flag=wx.TOP|wx.LEFT|wx.RIGHT, border=9) + sizer.Add(self.conect3D, (4, 0), flag=wx.ALL, border=9) self.SetSizer(sizer) sizer.Fit(self) -- libgit2 0.21.2