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 | 113 | # Lower fold panel |
114 | 114 | class LowerTaskPanel(wx.Panel): |
115 | 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 | 117 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, |
121 | 118 | self.GetSize(),FPB_DEFAULT_STYLE, |
122 | 119 | fpb.FPB_COLLAPSE_TO_BOTTOM) |
... | ... | @@ -182,9 +179,7 @@ class LowerTaskPanel(wx.Panel): |
182 | 179 | # Upper fold panel |
183 | 180 | class UpperTaskPanel(wx.Panel): |
184 | 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 | 183 | fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition, |
189 | 184 | self.GetSize(),FPB_DEFAULT_STYLE, |
190 | 185 | fpb.FPB_SINGLE_FOLD) | ... | ... |