diff options
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; |