From 76979c3530ed5303946cbb94657b3ba50c757e01 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 02:29:14 +0100 Subject: Fast scroll on Process page. [#24] Capital W and S keys now apply fast vertical scroll on Process page. --- bin/handler.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin/handler.py') diff --git a/bin/handler.py b/bin/handler.py index c5e6ad0..9c8ffaf 100644 --- a/bin/handler.py +++ b/bin/handler.py @@ -69,6 +69,10 @@ class Handler: elif cmd == ord("w"): self.__printer.world.pan_up() self.__printer.proc_scroll_up() + elif cmd == ord("S"): + self.__printer.proc_scroll_down(fast=True) + elif cmd == ord("W"): + self.__printer.proc_scroll_up(fast=True) elif cmd == ord("Q"): self.__printer.world.pan_reset() self.__printer.proc_scroll_vertical_reset() -- cgit v1.2.1