From d307f9ca34655de66303810bc64ee5021e3647d3 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sun, 7 May 2017 14:42:20 +0200 Subject: [PATCH] Clear hints on entering normal mode #349. --- src/normal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/normal.c b/src/normal.c index 9ea22ef..4286cef 100644 --- a/src/normal.c +++ b/src/normal.c @@ -23,6 +23,7 @@ #include "ascii.h" #include "command.h" #include "config.h" +#include "hints.h" #include "ext-proxy.h" #include "main.h" #include "normal.h" @@ -219,7 +220,7 @@ void normal_enter(Client *c) /* Make sure that when the browser area becomes visible, it will get mouse * and keyboard events */ gtk_widget_grab_focus(GTK_WIDGET(c->webview)); - /* TODO clear possible active hints */ + hints_clear(c); } /** -- 2.20.1