From c7fbe5b20c69b3f1e79d5bc4e210a0c3bbaeb9fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz?= Date: Fri, 5 Jan 2018 18:09:25 +0100 Subject: [PATCH] MiRCART.py:MiRCARTFrame.__init__(): change default appSize to (800, 600). --- MiRCART.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MiRCART.py b/MiRCART.py index a80d4bf..8c7a86b 100755 --- a/MiRCART.py +++ b/MiRCART.py @@ -451,7 +451,7 @@ class MiRCARTFrame(wx.Frame): self._updateStatusBar() # }}} # {{{ Initialisation method - def __init__(self, parent, appSize=(1024, 768), canvasPos=(25, 25), cellSize=(7, 14), canvasSize=(80, 25)): + def __init__(self, parent, appSize=(800, 600), canvasPos=(25, 25), cellSize=(7, 14), canvasSize=(80, 25)): super().__init__(parent, wx.ID_ANY, "MiRCART", size=appSize) self.panelSkin = wx.Panel(self, wx.ID_ANY)