* Fix the elm_shutdown bug in _elm_shutdown_config.
When the elm_shutdown is used after elm_config_all_flush, the segment fault occur.
It's why it uses ecore_x in _prop_all_update_cb after removing it.
+
+2013-03-27 Mike Blumenkrantz
+
+ * fix ctxpopup geometry when parent is an elm_win
* List : Focus_next should be executed only when access mode is enabled.
* Focus highlight should be reconfigured when theme is changed.
* Fix the elm_shutdown bug in _elm_shutdown_config.
+ * fix ctxpopup geometry when parent is an elm_win
Elementary 1.7.5
&hover_area.y,
&hover_area.w,
&hover_area.h);
+ if (!strcmp(elm_widget_type_get(wd->parent), "elm_win"))
+ hover_area.x = hover_area.y = 0;
evas_object_geometry_get(obj, &pos.x, &pos.y, NULL, NULL);
//Update Background
evas_object_geometry_get(parent, &x, &y, &w, &h);
+ if (!strcmp(elm_widget_type_get(parent), "elm_win"))
+ x = y = 0;
evas_object_move(wd->bg, x, y);
evas_object_resize(wd->bg, w, h);