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