aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-folder-commands.c')
-rw-r--r--shell/e-shell-folder-commands.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c
index b1cc047f85..a9bc540ca3 100644
--- a/shell/e-shell-folder-commands.c
+++ b/shell/e-shell-folder-commands.c
@@ -256,11 +256,15 @@ void
e_shell_command_open_folder_in_other_window (EShell *shell,
EShellView *shell_view)
{
+ EShellView *view;
+
g_return_if_fail (shell != NULL);
g_return_if_fail (E_IS_SHELL (shell));
g_return_if_fail (shell_view != NULL && E_IS_SHELL_VIEW (shell_view));
- e_shell_create_view (shell, e_shell_view_get_current_uri (shell_view));
+ view = e_shell_create_view (shell, e_shell_view_get_current_uri (shell_view));
+
+ gtk_widget_show (GTK_WIDGET (view));
}