diff options
Diffstat (limited to 'lib/gui')
| -rw-r--r-- | lib/gui/simulator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/simulator.py b/lib/gui/simulator.py index 0eed18c9..e0d78983 100644 --- a/lib/gui/simulator.py +++ b/lib/gui/simulator.py @@ -385,8 +385,8 @@ class DrawingPanel(wx.Panel): self.go() def choose_zoom_and_pan(self, event=None): - # ignore if called before we load the stitch plan - if not self.width and not self.height: + # ignore if EVT_SIZE fired before we load the stitch plan + if not self.width and not self.height and event is not None: return panel_width, panel_height = self.GetClientSize() |
