Commit 64f3a5754517df0a80d332ec589d6d9c937a64c5
1 parent
cd404d9d
Exists in
master
and in
56 other branches
Enlarged the width of the field number slice of mips gui
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/data/viewer_slice.py
... | ... | @@ -64,8 +64,8 @@ class ContourMIPConfig(wx.Panel): |
64 | 64 | initial=const.PROJECTION_MIP_SIZE) |
65 | 65 | self.mip_size_spin.SetToolTip(wx.ToolTip(_("Number of slices used to compound the visualization"))) |
66 | 66 | w, h = self.mip_size_spin.GetTextExtent('M') |
67 | - self.mip_size_spin.SetMinSize((4 * w + 10, -1)) | |
68 | - self.mip_size_spin.SetMaxSize((4 * w + 10, -1)) | |
67 | + self.mip_size_spin.SetMinSize((5 * w + 10, -1)) | |
68 | + self.mip_size_spin.SetMaxSize((5 * w + 10, -1)) | |
69 | 69 | |
70 | 70 | self.border_spin = FS.FloatSpin(self, -1, min_val=0, max_val=10, |
71 | 71 | increment=0.1, | ... | ... |