From 46c7c903acc35f8b5a1f2663155a488972af6734 Mon Sep 17 00:00:00 2001 From: Pierre Ratinaud Date: Sun, 14 Dec 2014 21:40:51 +0100 Subject: [PATCH] ... --- guifunct.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guifunct.py b/guifunct.py index c36e87b..5eeecae 100644 --- a/guifunct.py +++ b/guifunct.py @@ -1105,13 +1105,13 @@ class TGenFrame ( wx.Frame ): tgensChoices = Tgen.tgen.keys() self.tgens = wx.ListBox( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, tgensChoices, 0 ) - #self.tgens.SetMinSize( wx.Size( 200,250 ) ) + self.tgens.SetMinSize( wx.Size( 250,350 ) ) fgSizer1.Add( self.tgens, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.EXPAND, 5 ) tgencontentChoices = [] self.tgencontent = wx.ListBox( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, tgencontentChoices, 0|wx.VSCROLL ) - #self.tgencontent.SetMinSize( wx.Size( 200,250 ) ) + self.tgencontent.SetMinSize( wx.Size( 250,350 ) ) fgSizer1.Add( self.tgencontent, 0, wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.EXPAND, 5 ) -- 2.7.4