diff options
author | Not Zed <NotZed@Ximian.com> | 2005-07-21 15:09:23 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-07-21 15:09:23 +0800 |
commit | ecc06b08d474ef0aa1a3d8edbe83c083463b45ab (patch) | |
tree | 6539e83d70d512e6c1c7f261570a06040b8f67ab /shell/e-shell-window.c | |
parent | f4443f428e4494efbe2019c0492ec81afc1a4357 (diff) | |
download | gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar.gz gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar.bz2 gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar.lz gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar.xz gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.tar.zst gsoc2013-evolution-ecc06b08d474ef0aa1a3d8edbe83c083463b45ab.zip |
fix the pixmap location for the settings menu.
2005-07-21 Not Zed <NotZed@Ximian.com>
* e-shell-window-commands.c: fix the pixmap location for the
settings menu.
* e-shell-window.c (setup_widgets): reverted dobey's patch to put
the components in the useless tools window.
svn path=/trunk/; revision=29827
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index f80312ab82..b4047bc79a 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -703,7 +703,8 @@ setup_widgets (EShellWindow *window) (BonoboUIVerbFn)menu_component_selected, window); - g_string_printf(xml, "<submenu name=\"Tools\">" + g_string_printf(xml, "<submenu name=\"View\">" + "<submenu name=\"Window\">" "<placeholder name=\"WindowComponent\">" "<menuitem name=\"SwitchComponent-%s\" " "verb=\"\" label=\"%s\" accel=\"%s\" tip=\"", @@ -713,7 +714,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>\n", + "</placeholder></submenu></submenu>\n", tmp); g_free(tmp); bonobo_ui_component_set_translate (e_shell_window_peek_bonobo_ui_component (window), |