diff options
Diffstat (limited to 'commands.c')
-rw-r--r-- | commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } |