raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=59a4ed932ab7ee6a24d006ccd0fabee3f9b434c9
commit 59a4ed932ab7ee6a24d006ccd0fabee3f9b434c9 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Apr 3 17:31:01 2014 +0900 fix elm notify (and popup) after win position fixes --- src/lib/elm_notify.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/elm_notify.c b/src/lib/elm_notify.c index 65144a1..59ab7cd 100644 --- a/src/lib/elm_notify.c +++ b/src/lib/elm_notify.c @@ -112,6 +112,11 @@ _sizing_eval(Evas_Object *obj) if (!sd->parent) return; evas_object_geometry_get(sd->parent, &x, &y, &w, &h); + if (eo_isa(sd->parent, ELM_OBJ_WIN_CLASS)) + { + x = 0; + y = 0; + } evas_object_move(obj, x, y); evas_object_resize(obj, w, h); } --
