From 122777f789a68512593e4aa6da3ace3d0d8664ec Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 20 Jun 2024 12:21:57 -0700 Subject: [hci] Allow tab key to be used to cycle through UI elements Add support for wraparound scrolling and allow the tab key to be used to move forward through a list of elements, wrapping back around to the beginning of the list on overflow. This is mildly useful for a menu, and likely to be a strong user expectation for an interactive form. Signed-off-by: Michael Brown --- src/hci/tui/settings_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hci/tui/settings_ui.c') diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index 10c942321..bc08750a0 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -381,8 +381,8 @@ static void select_settings ( struct settings_ui *ui, static int main_loop ( struct settings *settings ) { struct settings_ui ui; unsigned int previous; + unsigned int move; int redraw = 1; - int move; int key; int rc; -- cgit