summaryrefslogtreecommitdiffstats
path: root/src/interface.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-05-13 08:13:38 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-05-13 08:13:38 +0000
commit113e34e9e94023ec335fac34f9714e28093187e4 (patch)
tree37abbc207f5f5a2bd3b790ea30c2c1549d7a5062 /src/interface.cpp
parentr11772@tres: ted | 2006-05-12 23:15:51 -0700 (diff)
downloadinkscape-113e34e9e94023ec335fac34f9714e28093187e4.tar.gz
inkscape-113e34e9e94023ec335fac34f9714e28093187e4.zip
r11886@tres: ted | 2006-05-13 00:30:29 -0700
Making the effects menu default on. (bzr r819)
Diffstat (limited to 'src/interface.cpp')
-rw-r--r--src/interface.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/interface.cpp b/src/interface.cpp
index 1c7baf413..c5d893ede 100644
--- a/src/interface.cpp
+++ b/src/interface.cpp
@@ -811,9 +811,6 @@ sp_ui_build_dyn_menus(Inkscape::XML::Node *menus, GtkWidget *menu, Inkscape::UI:
menu_pntr != NULL;
menu_pntr = menu_pntr->next()) {
if (!strcmp(menu_pntr->name(), "submenu")) {
- if (!strcmp(menu_pntr->attribute("name"), "Effects") && !prefs_get_int_attribute("extensions", "show-effects-menu", 0)) {
- continue;
- }
GtkWidget *mitem = gtk_menu_item_new_with_mnemonic(_(menu_pntr->attribute("name")));
GtkWidget *submenu = gtk_menu_new();
sp_ui_build_dyn_menus(menu_pntr->firstChild(), submenu, view);