From 5496fd92ed9c7fa90767e46519c5d4f08e763c91 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Fri, 13 Aug 2010 17:06:25 +0200 Subject: [PATCH] Add a small minimum size to the market browser splitter. --- gui/marketBrowser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/marketBrowser.py b/gui/marketBrowser.py index a622f2c54..e563379ad 100644 --- a/gui/marketBrowser.py +++ b/gui/marketBrowser.py @@ -34,3 +34,4 @@ class MarketBrowser(wx.Panel): self.splitter.SplitHorizontally(self.marketView, self.itemView) self.splitter.SetSashPosition(-300, True) + self.splitter.SetMinimumPaneSize(10)