Skip to content

Commit

Permalink
Revert changes to minimum / default sizes of splitter windows
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Jul 7, 2015
1 parent 972c08e commit 5e56107
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gui/mainFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def __init__(self):
self.notebookBrowsers.SetSelection(1)

self.splitter.SplitVertically(self.notebookBrowsers, self.FitviewAdditionsPanel)
self.splitter.SetMinimumPaneSize(220)
self.splitter.SetMinimumPaneSize(204)
self.splitter.SetSashPosition(self.browserWidth)

cstatsSizer = wx.BoxSizer(wx.VERTICAL)
Expand Down
2 changes: 1 addition & 1 deletion gui/marketBrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, parent):
self.itemView = ItemView(self.splitter, self)

self.splitter.SplitHorizontally(self.marketView, self.itemView)
self.splitter.SetMinimumPaneSize(150)
self.splitter.SetMinimumPaneSize(250)

# Setup our buttons for metaGroup selection
# Same fix as for search box on macs,
Expand Down

0 comments on commit 5e56107

Please sign in to comment.