This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/devilhorns/apos
in repository efl.
View the commit online.
commit 30e39723d3d9b5d813bdbfd1e38ebf1e97cb389d
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Aug 18 11:23:50 2025 +0100
tooltip - account for framespace
stops tt's being clipped on right/bottom of window
@fix
---
src/lib/elementary/els_tooltip.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/lib/elementary/els_tooltip.c b/src/lib/elementary/els_tooltip.c
index 6613745653..0ed54e7c99 100644
--- a/src/lib/elementary/els_tooltip.c
+++ b/src/lib/elementary/els_tooltip.c
@@ -583,7 +583,12 @@ _elm_tooltip_reconfigure(Elm_Tooltip *tt)
}
else
{
- evas_output_size_get(tt->evas, &cw, &ch);
+ Evas_Coord fx, fy, fw, fh;
+
+ evas_output_viewport_get(tt->evas, NULL, NULL, &cw, &ch);
+ evas_output_framespace_get(tt->evas, &fx, &fy, &fw, &fh);
+ cw -= fw;
+ ch -= fh;
evas_pointer_canvas_xy_get(tt->evas, &px, &py);
}
TTDBG("SCREEN: cw=%d,ch=%d\n", cw, ch);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.