X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=guifunct.py;h=5eeecaecdeff3f0fb8fdaaf5e6399835d99e7cb7;hp=c36e87b15e3a9b1e162124c5536119c30258fbba;hb=46c7c903acc35f8b5a1f2663155a488972af6734;hpb=c19f3c7e5f23e1d0d7c0f66dc11774ff783df57f 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 )