aboutsummaryrefslogtreecommitdiff
path: root/bin/handler.py
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
commitcdf8ae4931db1ecdbc5cab632ae8afb430a3a24b (patch)
treec4a25899c22a26559ced9ec308b62efaa7e2d2da /bin/handler.py
parentd53a4216c3219dc94cd45789142a2f28b5e0e1f7 (diff)
Scroll to top now with 'Q' key.
[#24] I want to free up capital 'S' in order to implement fast vertical scroll on Process and World pages.
Diffstat (limited to 'bin/handler.py')
-rw-r--r--bin/handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/handler.py b/bin/handler.py
index da95789..c5e6ad0 100644
--- a/bin/handler.py
+++ b/bin/handler.py
@@ -69,7 +69,7 @@ class Handler:
elif cmd == ord("w"):
self.__printer.world.pan_up()
self.__printer.proc_scroll_up()
- elif cmd == ord("S"):
+ elif cmd == ord("Q"):
self.__printer.world.pan_reset()
self.__printer.proc_scroll_vertical_reset()
elif cmd == ord("A"):