Commit 390a84c83a80123feca1f15b627c0b4908a33d0b

Authored by Paulo Henrique Junqueira Amorim
1 parent ff779b29

ENH: Maximized window

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
invesalius/gui/frame.py
... ... @@ -59,11 +59,11 @@ class Frame(wx.Frame):
59 59 icon_path = os.path.join(const.ICON_DIR, "invesalius.ico")
60 60 self.SetIcon(wx.Icon(icon_path, wx.BITMAP_TYPE_ICO))
61 61 if sys.platform != 'darwin':
62   - ####self.Maximize() ##DESCOMENTAR PAULO
  62 + self.Maximize()
63 63 #Necessary update AUI (statusBar in special)
64 64 #when maximized in the Win 7 and XP
65 65 #self.SetSize(self.GetSize())
66   - self.SetSize(wx.Size(1024, 748))
  66 + #self.SetSize(wx.Size(1024, 748))
67 67  
68 68  
69 69 # Set menus, status and task bar
... ...