aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-02-21 04:50:10 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-02-21 04:50:10 +0800
commitfeb63a0bdc5f09b4a822ebc31f2217d1a767247a (patch)
treedcf5dcd9fd0afb86adb5663a815538725f4f4d20 /shell/e-shell-view.c
parentacdca12ed11b44014082092a6ac7b8cff46e3341 (diff)
downloadgsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar.gz
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar.bz2
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar.lz
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar.xz
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.tar.zst
gsoc2013-evolution-feb63a0bdc5f09b4a822ebc31f2217d1a767247a.zip
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
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r--shell/e-shell-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 6545af81bd..caf11c9044 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -665,6 +665,8 @@ activate_shortcut_cb (EShortcutsView *shortcut_view,
EShellView *new_view;
new_view = e_shell_create_view (e_shell_view_get_shell (shell_view), uri, shell_view);
+ e_shell_view_show_shortcut_bar (new_view, FALSE);
+ e_shell_view_show_folder_bar (new_view, FALSE);
} else {
e_shell_view_display_uri (shell_view, uri);
}