"No listable items" in Navigate menu is now clickable

SVN revision: 83564
This commit is contained in:
Mike Blumenkrantz 2013-02-01 12:56:52 +00:00
parent 8f2a8b49a7
commit b6359e9607
3 changed files with 5 additions and 5 deletions

View File

@ -3,10 +3,10 @@
* split out binding configs into separate config domain
* added functions for freeing binding config structs
* E_Config_DD structs are now tracked and retrievable through e_config_descriptor_find
* binding dialogs now reload the default config from file when reset defaults is clicked
* fixed leak in profile list dbus method
* binding dialogs are now able to reset bindings to the system profile file bindings
* fixed behavior of Up/Down keys in filemanager when typebuf was visible
* "No listable items" in Navigate menu is now clickable
2013-01-31 Mike Blumenkrantz

3
NEWS
View File

@ -79,8 +79,9 @@ Improvements:
* No longer build illume edj files
* add support for AltGr in illume2's E_Kbd_Buf_Key, fix related leak
* split out binding configs into separate config domain
* binding dialogs now reload the default config from file when reset defaults is clicked
* binding dialogs are now able to reset bindings to the system profile file bindings
* "No listable items" in Navigate menu is now clickable
Fixes:
* IBar menu didn't allow to configure different icon sources, show contents menu even on empty IBar.
* Shelf option 'overlapping' made clearer and disabled when window automatic movement on shelf hide isn't set.

View File

@ -237,9 +237,8 @@ _e_mod_menu_populate_done(void *data, Eio_File *handler __UNUSED__)
mi = e_menu_item_new(m);
e_menu_item_label_set(mi, _("No listable items"));
e_menu_item_disabled_set(mi, 1);
/* avoid crash during cleanup_cb later */
eina_stringshare_ref(e_object_data_get(data));
e_object_data_set(E_OBJECT(mi), eina_stringshare_ref(e_object_data_get(data)));
e_menu_item_callback_set(mi, _e_mod_menu_populate_cb, NULL);
}
else
m->items = eina_list_sort(m->items, 0, (Eina_Compare_Cb)_e_mod_menu_populate_sort);