diff --git a/ChangeLog b/ChangeLog index 1dbd5b185..eba662768 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/NEWS b/NEWS index 20c0b9f1d..3750cbdad 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/src/bin/e_int_menus.c b/src/bin/e_int_menus.c index 30ae30649..4f1fc1c9d 100644 --- a/src/bin/e_int_menus.c +++ b/src/bin/e_int_menus.c @@ -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; }