rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=e10171a50ffc859c43133de503f6b5897b43b78d
commit e10171a50ffc859c43133de503f6b5897b43b78d Author: Andrii Kroitor <an.kroi...@samsung.com> Date: Mon Jul 11 15:12:15 2016 +0300 property: fix tooltip position --- src/bin/ui/property/property_common.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/ui/property/property_common.c b/src/bin/ui/property/property_common.c index fee828b..78c2ee6 100644 --- a/src/bin/ui/property/property_common.c +++ b/src/bin/ui/property/property_common.c @@ -412,7 +412,10 @@ _control_create(Property_Attribute *pa, Property_Action *action, Evas_Object *pa } if (action->tooltip) - elm_object_tooltip_text_set(content, action->tooltip); + { + elm_object_tooltip_text_set(content, action->tooltip); + elm_object_tooltip_move_freeze_push(content); + } return content; } --