Compare View

switch
from
...
to
 
Commits (3)
invesalius/constants.py
... ... @@ -28,7 +28,7 @@ from invesalius import utils
28 28 from invesalius import inv_paths
29 29  
30 30 #from invesalius.project import Project
31   -INVESALIUS_VERSION = "3.1.99995"
  31 +INVESALIUS_VERSION = "3.1.99996"
32 32  
33 33 INVESALIUS_ACTUAL_FORMAT_VERSION = 1.1
34 34  
... ...
invesalius/gui/dialogs.py
... ... @@ -118,7 +118,7 @@ class NumberDialog(wx.Dialog):
118 118 sizer = wx.BoxSizer(wx.VERTICAL)
119 119 sizer.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
120 120 sizer.Add(num_ctrl, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
121   - sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)
  121 + sizer.Add(btnsizer, 0, wx.ALL, 5)
122 122  
123 123 self.SetSizer(sizer)
124 124 sizer.Fit(self)
... ...