From 6edb783d9abb91e569133d3516730493c3438e80 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 19 Jul 2020 00:02:09 +0200 Subject: Show tooltips under the mouse cursor instead of under the parent widget. --- src/ui/ui.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ui/ui.cc') diff --git a/src/ui/ui.cc b/src/ui/ui.cc index c1558b1..976ddab 100644 --- a/src/ui/ui.cc +++ b/src/ui/ui.cc @@ -295,7 +295,8 @@ void UI::frame() ui_mouse_focus->tooltip()->parent()->to_local_coords(mouse_cursor) : mouse_cursor); - ui_mouse_focus->tooltip()->set_location(p.x() - ui_mouse_focus->tooltip()->width() * 0.5f, p.y() + pointer_size * 0.5f); + ui_mouse_focus->tooltip()->set_location(p.x() - ui_mouse_focus->tooltip()->width() * 0.5f, p.y() + pointer_size); + ui_mouse_focus->tooltip()->resize(); ui_mouse_focus->tooltip()->show(); } } -- cgit v1.2.3