Elm: Fix stupid hover widget to account for framespace. Fixes ticket

1417.



SVN revision: 76003
This commit is contained in:
Christopher Michael 2012-09-03 12:04:39 +00:00
parent 1ecc6bca52
commit 576dc39b92
1 changed files with 11 additions and 1 deletions

View File

@ -296,7 +296,17 @@ _elm_hover_smart_sizing_eval(Evas_Object *obj)
if (sd->on_del) return;
if (sd->parent) evas_object_geometry_get(sd->parent, &x, &y, &w, &h);
if (sd->parent)
{
Evas_Coord fx, fy;
evas_output_framespace_get(evas_object_evas_get(obj),
&fx, &fy, NULL, NULL);
evas_object_geometry_get(sd->parent, &x, &y, &w, &h);
x += fx;
y += fy;
}
evas_object_geometry_get(obj, &x2, &y2, &w2, &h2);
if (elm_widget_mirrored_get(obj)) ofs_x = w - (x2 - x) - w2;