config submenu now sets "config" category
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Thu, 10 Jan 2013 10:27:08 +0000 (10:27 +0000)
committerMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Thu, 10 Jan 2013 10:27:08 +0000 (10:27 +0000)
SVN revision: 82546

ChangeLog
NEWS
src/bin/e_int_menus.c

index 1dbd5b1..eba6627 100644 (file)
--- 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 20c0b9f..3750cbd 100644 (file)
--- 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.
index 30ae306..4f1fc1c 100644 (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;
 }