From 7e71b3af368b2b8bd28d34842611d78d19ea497f Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Fri, 10 Jun 2016 13:03:48 +0200 Subject: [PATCH] Fixed: tooltips were not showed if mouse cursor were positioned at where the tooltip would be shown --- src/source.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source.cc b/src/source.cc index 3469759..da59dcf 100644 --- a/src/source.cc +++ b/src/source.cc @@ -456,7 +456,7 @@ void Source::View::set_tooltip_and_dialog_events() { }); signal_leave_notify_event().connect([this](GdkEventCrossing*) { - hide_tooltips(); + delayed_tooltips_connection.disconnect(); return false; }); }