From cbabefebf76a7c288648752812e87bd41999757f Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 01:50:45 +0100 Subject: Plugin updates. Scroll to top command is now 'Q'. --- tsalis/README.md | 2 +- tsalis/src/handler.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tsalis') diff --git a/tsalis/README.md b/tsalis/README.md index fd81a19..bb50c38 100644 --- a/tsalis/README.md +++ b/tsalis/README.md @@ -33,7 +33,7 @@ renamed and reloaded as needed. |Left arrow |Previous page | |Right arrow |Next page | |wasd |Scroll (PROCESS and WORLD page) | -|W |Scroll to top (PROCESS and WORLD page) | +|Q |Scroll to top (PROCESS and WORLD page) | |A |Scroll to left (PROCESS page) | |zx |Zoom in/out (WORLD page) | |op |Select previous/next organism | diff --git a/tsalis/src/handler.c b/tsalis/src/handler.c index e886733..f5be2c8 100644 --- a/tsalis/src/handler.c +++ b/tsalis/src/handler.c @@ -240,7 +240,7 @@ tsh_handleEvent(int event) tsp_scrollRight(); break; - case 'W': + case 'Q': tsp_scrollToTop(); break; -- cgit v1.2.1