From 79d131b2926462a5321cefdc88cbf1da56fe581b Mon Sep 17 00:00:00 2001 From: paulojamorim Date: Mon, 16 May 2011 18:40:35 +0000 Subject: [PATCH] ENH: Changed size in the windows xp --- invesalius/gui/preferences.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/invesalius/gui/preferences.py b/invesalius/gui/preferences.py index c39e32a..5142dc1 100644 --- a/invesalius/gui/preferences.py +++ b/invesalius/gui/preferences.py @@ -75,7 +75,7 @@ class Viewer3D(wx.Panel): def __init__(self, parent): - wx.Panel.__init__(self, parent, size = wx.Size(800,600)) + wx.Panel.__init__(self, parent) box_visualization = wx.StaticBox(self, -1, _("Surface")) @@ -96,7 +96,7 @@ class Viewer3D(wx.Panel): bsizer_ren.Add(lbl_rendering, 0, wx.TOP | wx.LEFT, 10) rb_rendering = self.rb_rendering = wx.RadioBox(self, -1, "", wx.DefaultPosition, wx.DefaultSize, - ['CPU', 'GPU (Only NVidia video card)'], 3, wx.RA_SPECIFY_COLS | wx.NO_BORDER) + ['CPU', 'GPU (Only NVidia video card)'], 2, wx.RA_SPECIFY_COLS | wx.NO_BORDER) bsizer_ren.Add(rb_rendering, 0, wx.TOP | wx.LEFT, 0) border = wx.BoxSizer(wx.VERTICAL) @@ -125,7 +125,7 @@ class Language(wx.Panel): def __init__(self, parent): - wx.Panel.__init__(self, parent, size = wx.Size(800,600)) + wx.Panel.__init__(self, parent) box = wx.StaticBox(self, -1, "Language") -- libgit2 0.21.2