Fixed an oversight, no need to set a minsize for editctrl, it gets ugly on wxgtk

This commit is contained in:
HomeWorld
2010-10-14 19:12:03 +03:00
parent 0c2d09cc46
commit 0c1ecf26bd

View File

@@ -51,7 +51,7 @@ class ImportDialog(wx.Dialog):
contentSizer = wx.BoxSizer(wx.VERTICAL)
self.tcEdit = wx.TextCtrl(self, wx.ID_ANY, u"", style=wx.TE_MULTILINE)
self.tcEdit.SetMinSize( wx.Size( -1,250 ) )
contentSizer.Add(self.tcEdit, 1, wx.EXPAND, 5)
mainSizer.Add(contentSizer, 1, wx.EXPAND, 5)