From 469f4939a76931a091903ad849c20dc824a7bd56 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Wed, 3 Nov 2010 13:47:15 +0200 Subject: [PATCH] Revert "Fixed a sizer type induced layout bug in multiSwitch" This reverts commit 4ccc1af3111d65fa8ae161b7ab1dbb9320097c8f. --- gui/multiSwitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/multiSwitch.py b/gui/multiSwitch.py index 9d8e46ebe..7345e3763 100644 --- a/gui/multiSwitch.py +++ b/gui/multiSwitch.py @@ -68,7 +68,7 @@ class MultiSwitch(wx.Notebook): p = wx.Panel(self) self.InsertPage(pos, p, "") p.type = "fit" - sizer = wx.BoxSizer(wx.HORIZONTAL) + sizer = wx.BoxSizer(wx.VERTICAL) p.view = fv.FittingView(p) sizer.Add(p.view, 1, wx.EXPAND | wx.RESERVE_SPACE_EVEN_IF_HIDDEN)