From 84016458470a8e9f076f3e7f1714c35e80afd7d6 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Tue, 28 Jun 2022 07:33:43 +0100 Subject: Select next result on Tab. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 6284cda..12e89a2 100644 --- a/src/main.c +++ b/src/main.c @@ -210,7 +210,7 @@ static void wl_keyboard_key( tofi->window.entry.selection += nsel; tofi->window.entry.selection--; tofi->window.entry.selection %= nsel; - } else if (sym == XKB_KEY_Down || sym == XKB_KEY_Right) { + } else if (sym == XKB_KEY_Down || sym == XKB_KEY_Right || sym == XKB_KEY_Tab) { uint32_t nsel = MAX(MIN(tofi->window.entry.num_results, tofi->window.entry.results.count), 1); tofi->window.entry.selection++; tofi->window.entry.selection %= nsel; -- cgit v1.2.3