From: seoz Date: Thu, 15 Mar 2012 04:03:16 +0000 (+0000) Subject: elm entry: Added blank lines for readability. X-Git-Tag: REL_F_I9500_20120323_1~17^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eec8a397b3b28e9d26ce147e3137ef32cb2726e3;p=framework%2Fuifw%2Felementary.git elm entry: Added blank lines for readability. Signed-off-by: Daniel Juyung Seo git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69351 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 0a2343d..8f06752 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -3830,19 +3830,24 @@ _entry_hover_anchor_clicked(void *data, Evas_Object *obj, void *event_info) Elm_Entry_Anchor_Hover_Info ei; Evas_Coord x, w, y, h, px, py; if (!wd) return; + ei.anchor_info = event_info; + wd->anchor_hover.pop = elm_icon_add(obj); evas_object_move(wd->anchor_hover.pop, info->x, info->y); evas_object_resize(wd->anchor_hover.pop, info->w, info->h); + wd->anchor_hover.hover = elm_hover_add(obj); elm_widget_mirrored_set(wd->anchor_hover.hover, elm_widget_mirrored_get(obj)); if (wd->anchor_hover.hover_style) elm_object_style_set(wd->anchor_hover.hover, wd->anchor_hover.hover_style); + hover_parent = wd->anchor_hover.hover_parent; if (!hover_parent) hover_parent = obj; elm_hover_parent_set(wd->anchor_hover.hover, hover_parent); elm_hover_target_set(wd->anchor_hover.hover, wd->anchor_hover.pop); ei.hover = wd->anchor_hover.hover; + evas_object_geometry_get(hover_parent, &x, &y, &w, &h); ei.hover_parent.x = x; ei.hover_parent.y = y; @@ -3886,4 +3891,3 @@ _entry_hover_anchor_clicked(void *data, Evas_Object *obj, void *event_info) } } /* END - ANCHOR HOVER */ -