From 7e8bc19a45ac8821051a01a39a1bf6859f8e45e8 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Mon, 21 Dec 2020 19:13:02 -0700 Subject: [PATCH] Move cursor to next choice after multi-(de)selecting --- src/tty_interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tty_interface.c b/src/tty_interface.c index c9fdcc7..381d46d 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -145,6 +145,7 @@ static void action_select(tty_interface_t *state) { } else { choices_select(state->choices, selection); } + choices_next(state->choices); } }