diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-18 13:43:47 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-18 13:43:47 +0000 |
commit | f36ecd9d3d605ce06a4d01da55a8acf3c131623a (patch) | |
tree | 9a8e45dfd2822213d502b56a2dd5c5406228d471 /src/modules/winlist | |
parent | 0e466612d630edba1066a58c08494b8c610a9937 (diff) | |
download | enlightenment-f36ecd9d3d605ce06a4d01da55a8acf3c131623a.tar.gz |
giant comp rejiggering commit #2: popups are now objects drawn directly onto the compositor canvas with no xwindows of their own
* added a number of new e_comp functions and macros
* options for disabling effects on objects: this option does not currently have any effect
* all modules which used gadcon popups have been adjusted
* all modules which used input windows to detect close events for gadcon popups have been adjusted to use new popup autoclose functionality
* shelves are now always drawn on the compositor canvas, meaning objects will never get clipped by the shelf (ticket #1810)
* shelves no longer have an event object
SVN revision: 84060
Diffstat (limited to 'src/modules/winlist')
-rw-r--r-- | src/modules/winlist/e_winlist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/winlist/e_winlist.c b/src/modules/winlist/e_winlist.c index 17655feed3..accbd6897b 100644 --- a/src/modules/winlist/e_winlist.c +++ b/src/modules/winlist/e_winlist.c @@ -141,7 +141,6 @@ e_winlist_show(E_Zone *zone, E_Winlist_Filter filter) evas_event_feed_mouse_move(_winlist->evas, -1000000, -1000000, ecore_x_current_time_get(), NULL); - e_popup_layer_set(_winlist, E_LAYER_POPUP); evas_event_freeze(_winlist->evas); o = edje_object_add(_winlist->evas); _bg_object = o; @@ -150,7 +149,7 @@ e_winlist_show(E_Zone *zone, E_Winlist_Filter filter) evas_object_move(o, 0, 0); evas_object_resize(o, w, h); evas_object_show(o); - e_popup_edje_bg_object_set(_winlist, o); + e_popup_content_set(_winlist, o); o = e_box_add(_winlist->evas); _list_object = o; |