diff --git a/engine/controls.py b/engine/controls.py index ef4bb57..fb59d13 100644 --- a/engine/controls.py +++ b/engine/controls.py @@ -37,7 +37,7 @@ class KeyBindings: # self.pointer = adjusted_coords # self.scroll_cursor() def key_released(self, key): - if key in ["Up", "Down", "Left", "Right"]: + if key in ["Up", "Down", "Left", "Right", 8, 9, 10, 11]: self.stop_scrolling() def start_scrolling(self, direction):