raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=c85c02ab0d997440f3831f65adc2fb999b3a3dd2
commit c85c02ab0d997440f3831f65adc2fb999b3a3dd2 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Fri Apr 3 17:53:26 2015 +0900 e - lost windows menu is back. no windows menu does not handle it. fix lack of lost windows submenu. no - windows menu does not handle it. lost windows lists windows that are LOST - out of screen bounds. this happens a lot with some apps asking to be placed out of bounds for whatever silly reasons they have. you literally cannot get these windows back without this menu. bring it back! @fix --- src/bin/e_int_menus.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/e_int_menus.c b/src/bin/e_int_menus.c index 92c8d92..e3d41d3 100644 --- a/src/bin/e_int_menus.c +++ b/src/bin/e_int_menus.c @@ -195,7 +195,6 @@ e_int_menus_main_new(void) e_menu_item_submenu_set(mi, subm); e_object_data_set(E_OBJECT(subm), dat); -#if 0 // lost windows already handled inside "Windows" from main menu. subm = e_int_menus_lost_clients_new(); e_object_data_set(E_OBJECT(subm), dat); dat->lost_clients = subm; @@ -203,7 +202,6 @@ e_int_menus_main_new(void) e_menu_item_label_set(mi, _("Lost Windows")); e_util_menu_item_theme_icon_set(mi, "preferences-windows-lost"); e_menu_item_submenu_set(mi, subm); -#endif l = _e_int_menus_augmentation_find("main/3"); if (l) _e_int_menus_augmentation_add(m, l); --