From df6b39ab607cf410e378446ca9bb6852c47b6370 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 12 Sep 2017 11:38:17 +0800 Subject: [PATCH] Hide info box and eventual status message after handling a mouse event Fixes #1566 --- src/input_handler.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/input_handler.cc b/src/input_handler.cc index debae2d8..eae424da 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -231,6 +231,10 @@ public: if (m_mouse_handler.handle_key(key, context())) { + context().print_status({}); + if (context().has_client()) + context().client().info_hide(); + if (not transient) m_idle_timer.set_next_date(Clock::now() + get_idle_timeout(context())); }