From 6b4c814478e99e9f6c992ebb576e8ce93464d64b Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 27 Jul 2016 09:12:13 +0200 Subject: [PATCH] Minor fix to tooltip positioning --- src/tooltips.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tooltips.cc b/src/tooltips.cc index a603fb2..35bc55c 100644 --- a/src/tooltips.cc +++ b/src/tooltips.cc @@ -109,6 +109,8 @@ void Tooltip::show(bool disregard_drawn) { } position={rectangle.get_x(), rectangle.get_y()}; + if(window->get_realized()) + window->move(position.first, position.second); window->show_all(); }