diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-window.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 517f50a20b..bbab3dd7ce 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2005-05-13 Rodney Dawes <dobey@novell.com> + + * e-shell-window.c (setup_widgets): Update for the new menu layout by + putting the "component" switching items under the "Tools" menu + 2005-05-13 Shreyas Srinivasan <sshreyas@novell.com> * e-shell-offline-handler.c: Remove the go->offline dialog. diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 644ad02a5a..53b8489751 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -702,8 +702,7 @@ setup_widgets (EShellWindow *window) (BonoboUIVerbFn)menu_component_selected, window); - g_string_printf(xml, "<submenu name=\"View\">" - "<submenu name=\"Window\">" + g_string_printf(xml, "<submenu name=\"Tools\">" "<placeholder name=\"WindowComponent\">" "<menuitem name=\"SwitchComponent-%s\" " "verb=\"\" label=\"%s\" accel=\"%s\" tip=\"", @@ -713,7 +712,7 @@ setup_widgets (EShellWindow *window) g_string_append_printf(xml, _("Switch to %s"), info->button_label); tmp = bonobo_ui_util_pixbuf_to_xml (info->menu_icon), g_string_append_printf(xml, "\" pixtype=\"pixbuf\" pixname=\"%s\"/>" - "</placeholder></submenu></submenu>\n", + "</placeholder></submenu>\n", tmp); g_free(tmp); bonobo_ui_component_set_translate (e_shell_window_peek_bonobo_ui_component (window), |