From 494f96e1cdd6b848693de74793109d32db1787cc Mon Sep 17 00:00:00 2001 From: Kaian Date: Thu, 26 Jan 2017 13:37:19 +0100 Subject: [PATCH] cf: add support for deselecting arrows Use the same keybinding ACTION_CLEAR that is used in call list to deselect rows (default Cltr+W). --- src/curses/ui_call_flow.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/curses/ui_call_flow.c b/src/curses/ui_call_flow.c index bd174ac..e5dbfbe 100644 --- a/src/curses/ui_call_flow.c +++ b/src/curses/ui_call_flow.c @@ -1163,6 +1163,9 @@ call_flow_handle_key(ui_t *ui, int key) } } break; + case ACTION_CLEAR: + info->selected = -1; + break; case ACTION_CONFIRM: // KEY_ENTER, display current message in raw mode ui_create_panel(PANEL_CALL_RAW);