From 1b9cab0a23f474944e2cf74ed7da72792b44ae99 Mon Sep 17 00:00:00 2001 From: familyfriendlymikey Date: Tue, 6 Sep 2022 18:31:51 -0400 Subject: [PATCH] add click handlers to for up and down hotkeys --- app/components/app-links.imba | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/app-links.imba b/app/components/app-links.imba index 33a5f37..6b757ad 100644 --- a/app/components/app-links.imba +++ b/app/components/app-links.imba @@ -65,6 +65,7 @@ tag app-links result.push temp temp = { + click_handler: api.increment_link_selection_index.bind(api) hotkey_handler: api.increment_link_selection_index.bind(api) hotkey: 'down' hotkey_display_name: "Down Arrow" @@ -73,6 +74,7 @@ tag app-links result.push temp temp = { + click_handler: api.decrement_link_selection_index.bind(api) hotkey_handler: api.decrement_link_selection_index.bind(api) hotkey: 'up' hotkey_display_name: "Up Arrow"