config submenu now sets "config" category

SVN revision: 82546
This commit is contained in:
Mike Blumenkrantz 2013-01-10 10:27:08 +00:00
parent 77a169538e
commit a428601f56
3 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* E_LIST_HANDLER_APPEND macro now asserts the event handler to make debugging easier
* fixed bug where internal dialogs would not redraw after unfullscreening
* config submenu now sets "config" category
2013-01-10 Deon Thomas

1
NEWS
View File

@ -51,6 +51,7 @@ Improvements:
* Desktop->Shelves menu now shows shelf names
* geometry_auto_move option now also corrects applications which fail in their attempts to center windows
* E_LIST_HANDLER_APPEND macro now asserts the event handler to make debugging easier
* config submenu now sets "config" category
Fixes:
* Force check changed upon confirmation dialog closure for engine settings.

View File

@ -373,6 +373,7 @@ e_int_menus_config_new(void)
E_Menu *m;
m = e_menu_new();
e_menu_category_set(m, "config");
e_menu_pre_activate_callback_set(m, _e_int_menus_config_pre_cb, NULL);
return m;
}