From 480cfde6ae49491385c9fa8fd29290be99b9559a Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Wed, 10 Nov 2010 08:57:37 +0100 Subject: [PATCH] Give the graphFrame a default size --- gui/graphFrame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/graphFrame.py b/gui/graphFrame.py index af4414cc9..095c1baae 100644 --- a/gui/graphFrame.py +++ b/gui/graphFrame.py @@ -33,7 +33,7 @@ from gui import bitmapLoader class GraphFrame(wx.Frame): def __init__(self, parent, style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE): - wx.Frame.__init__(self, parent, style=style) + wx.Frame.__init__(self, parent, style=style, size=(300, 500)) self.CreateStatusBar() self.mainSizer = wx.BoxSizer(wx.VERTICAL) self.SetSizer(self.mainSizer)