X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftint2;a=blobdiff_plain;f=src%2Ftooltip%2Ftooltip.c;h=05da0d03588a7aa9c2647431607641bf0d835af1;hp=cf62db392d68afcd605d6002398196448766bf3d;hb=c2af725585ae95742d189361a1f0b604a9dad887;hpb=648d947a48f77a223b2d715e56a62ee448a09121 diff --git a/src/tooltip/tooltip.c b/src/tooltip/tooltip.c index cf62db3..05da0d0 100644 --- a/src/tooltip/tooltip.c +++ b/src/tooltip/tooltip.c @@ -99,7 +99,10 @@ void tooltip_show(void* arg) int mx, my; Window w; XTranslateCoordinates( server.dsp, server.root_win, g_tooltip.panel->main_win, x, y, &mx, &my, &w); - Area* area = click_area(g_tooltip.panel, mx, my); + Area* area; + if (!panel_horizontal) + my += height/2; /* we adjusted y in tooltip_trigger_show, revert or we won't find the correct area anymore */ + area = click_area(g_tooltip.panel, mx, my); stop_tooltip_timeout(); if (!g_tooltip.mapped && area->_get_tooltip_text) { tooltip_copy_text(area);