From feb63a0bdc5f09b4a822ebc31f2217d1a767247a Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 20 Feb 2002 20:50:10 +0000 Subject: Don't show the folder bar and the shortcut bar in the new window. * e-shell-view-menu.c (command_open_folder_in_new_window): Don't show the folder bar and the shortcut bar in the new window. * e-shell-view.c (activate_shortcut_cb): Don't show the folder bar and the shortcut bar in the new window. * e-shell-view.c (e_shell_create_view): Don't flush the GTK events here. * e-shell.c (e_shell_construct): New arg @start_online. If true, invoke `e_shell_go_online()' before returning. (e_shell_new): New arg @start_online. Pass it to e_shell_construct(). (init): Default ->line_status to E_SHELL_LINE_STATUS_OFFLINE. * main.c (main): Add "--offline" and "--online" options. svn path=/trunk/; revision=15776 --- shell/e-shell-view-menu.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'shell/e-shell-view-menu.c') diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index e972184df4..649e37b016 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -313,6 +313,9 @@ command_open_folder_in_new_window (BonoboUIComponent *uih, uri = g_strconcat (E_SHELL_URI_PREFIX, get_path_for_folder_op (shell_view), NULL); new_view = e_shell_create_view (shell, uri, shell_view); g_free (uri); + + e_shell_view_show_shortcut_bar (new_view, FALSE); + e_shell_view_show_folder_bar (new_view, FALSE); } -- cgit