summaryrefslogtreecommitdiff
path: root/lib/gui/simulator/simulator_panel.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-06-29 06:33:06 +0200
committerGitHub <noreply@github.com>2025-06-29 06:33:06 +0200
commit0d461e3aef42b046b7ca14e2b0a05990306030d4 (patch)
tree8adc60944c2c6ecea16774b4b822d812e3f3c33e /lib/gui/simulator/simulator_panel.py
parentdd3ae3e8f3bfacb9738a1a7e7df8da6300ebb5a6 (diff)
Fix simulator drawing panel attribute error when no stitch is loaded (#3815)
Diffstat (limited to 'lib/gui/simulator/simulator_panel.py')
-rw-r--r--lib/gui/simulator/simulator_panel.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/gui/simulator/simulator_panel.py b/lib/gui/simulator/simulator_panel.py
index 1cea9214..efbb2a62 100644
--- a/lib/gui/simulator/simulator_panel.py
+++ b/lib/gui/simulator/simulator_panel.py
@@ -58,7 +58,6 @@ class SimulatorPanel(wx.Panel):
(wx.ACCEL_SHIFT, ord('='), self.cp.animation_one_stitch_forward),
(wx.ACCEL_NORMAL, wx.WXK_ADD, self.cp.animation_one_stitch_forward),
(wx.ACCEL_NORMAL, wx.WXK_NUMPAD_ADD, self.cp.animation_one_stitch_forward),
- (wx.ACCEL_NORMAL, wx.WXK_NUMPAD_UP, self.cp.animation_one_stitch_forward),
(wx.ACCEL_NORMAL, ord('-'), self.cp.animation_one_stitch_backward),
(wx.ACCEL_NORMAL, ord('_'), self.cp.animation_one_stitch_backward),
(wx.ACCEL_NORMAL, wx.WXK_SUBTRACT, self.cp.animation_one_stitch_backward),