Commit c3dc6d174939041712582b5878fe15dacff44196
1 parent
d4481e9c
Exists in
wxgtk3_bkp
the size of the data_notebook
Showing
1 changed file
with
2 additions
and
7 deletions
Show diff stats
invesalius/gui/default_tasks.py
@@ -113,10 +113,7 @@ class Panel(wx.Panel): | @@ -113,10 +113,7 @@ class Panel(wx.Panel): | ||
113 | # Lower fold panel | 113 | # Lower fold panel |
114 | class LowerTaskPanel(wx.Panel): | 114 | class LowerTaskPanel(wx.Panel): |
115 | def __init__(self, parent): | 115 | def __init__(self, parent): |
116 | - wx.Panel.__init__(self, parent, pos=wx.Point(5, 5), | ||
117 | - # size=wx.Size(280, 700)) | ||
118 | - size=wx.Size(280, 420)) | ||
119 | - | 116 | + wx.Panel.__init__(self, parent) |
120 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, | 117 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, |
121 | self.GetSize(),FPB_DEFAULT_STYLE, | 118 | self.GetSize(),FPB_DEFAULT_STYLE, |
122 | fpb.FPB_COLLAPSE_TO_BOTTOM) | 119 | fpb.FPB_COLLAPSE_TO_BOTTOM) |
@@ -182,9 +179,7 @@ class LowerTaskPanel(wx.Panel): | @@ -182,9 +179,7 @@ class LowerTaskPanel(wx.Panel): | ||
182 | # Upper fold panel | 179 | # Upper fold panel |
183 | class UpperTaskPanel(wx.Panel): | 180 | class UpperTaskPanel(wx.Panel): |
184 | def __init__(self, parent): | 181 | def __init__(self, parent): |
185 | - wx.Panel.__init__(self, parent, pos=wx.Point(5, 5), | ||
186 | - size=wx.Size(280, 656)) | ||
187 | - | 182 | + wx.Panel.__init__(self, parent) |
188 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, | 183 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, |
189 | self.GetSize(),FPB_DEFAULT_STYLE, | 184 | self.GetSize(),FPB_DEFAULT_STYLE, |
190 | fpb.FPB_SINGLE_FOLD) | 185 | fpb.FPB_SINGLE_FOLD) |