summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--src/nautilus-window-toolbars.c2
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e2e17af0..e868e5380 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2000-10-16 John Sullivan <sullivan@eazel.com>
+ Fixed bug 3582 (warning on boot due to verb/button problem
+ in non-Eazel-service build)
+
+ * src/nautilus-window-toolbars.c:
+ (nautilus_window_initialize_toolbars): Call set_hidden on
+ the command, not the widget. We were waiting for a Bonobo
+ fix to make this change, because it didn't work last time
+ we tried. But now it does, so the Bonobo fix must have
+ occurred.
+
+2000-10-16 John Sullivan <sullivan@eazel.com>
+
Fixed bug 3753 (status bar shows selected items info even
after they are deselected)
diff --git a/src/nautilus-window-toolbars.c b/src/nautilus-window-toolbars.c
index 37cd076df..1772ca343 100644
--- a/src/nautilus-window-toolbars.c
+++ b/src/nautilus-window-toolbars.c
@@ -257,7 +257,7 @@ nautilus_window_initialize_toolbars (NautilusWindow *window)
/* Hide the services button if necessary */
#ifndef EAZEL_SERVICES
- nautilus_bonobo_set_hidden (window->details->shell_ui, "/Tool Bar/Extra Buttons Placeholder/Services", TRUE);
+ nautilus_bonobo_set_hidden (window->details->shell_ui, "/commands/Services", TRUE);
#endif
set_up_toolbar_images (window);