From 6ce94e3e3b8cccab0a5cc23c7538ad19626c1c1d Mon Sep 17 00:00:00 2001 From: N-R-K <79544946+N-R-K@users.noreply.github.com> Date: Thu, 7 Oct 2021 06:37:34 +0600 Subject: add statusbar message upon key-hander activation (#98) Currently when running the key-handler the statusbar shows a "Running key-handler..." message, but there's no indication of the prefix key being pressed. There's a slight functional benefit of this patch in the sense that users can visually tell if the key-handler is listening on input or if the key-handler has been aborted or not. --- commands.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index 42e78da..8ab1247 100644 --- a/commands.c +++ b/commands.c @@ -37,6 +37,7 @@ void animate(void); void slideshow(void); void set_timeout(timeout_f, int, bool); void reset_timeout(timeout_f); +void handle_key_handler(bool); extern appmode_t mode; extern img_t img; @@ -114,7 +115,7 @@ bool cg_toggle_bar(arg_t _) bool cg_prefix_external(arg_t _) { - extprefix = true; + handle_key_handler(true); return false; } -- cgit v1.2.3-54-g00ecf