diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:45 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:45 +0100 |
commit | cbabefebf76a7c288648752812e87bd41999757f (patch) | |
tree | 0659aad01825ed157d3a402c524fc5452adea39f /tsalis | |
parent | ec53566f5ccb4fb88f2f42c3099ab630c0f2375d (diff) |
Plugin updates. Scroll to top command is now 'Q'.
Diffstat (limited to 'tsalis')
-rw-r--r-- | tsalis/README.md | 2 | ||||
-rw-r--r-- | tsalis/src/handler.c | 2 |
2 files changed, 2 insertions, 2 deletions
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; |