aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-07-22 07:19:35 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-07-22 07:19:35 +0800
commit44230f1ef78e54ec616982b827d5f25b916de291 (patch)
treedf946f5445aba28a4e02b71d960d4d85a3d39ca0 /shell/e-shell-view.c
parent931953de1f41d51d3d28b6c099e01cd0b1befdc4 (diff)
downloadgsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar.gz
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar.bz2
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar.lz
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar.xz
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.tar.zst
gsoc2013-evolution-44230f1ef78e54ec616982b827d5f25b916de291.zip
Some changes to the pop-up folder tree, so that it makes more visual
sense. svn path=/trunk/; revision=4271
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r--shell/e-shell-view.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index bd36c0df07..38ba7d6487 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1015,6 +1015,13 @@ e_shell_view_set_shortcut_bar_mode (EShellView *shell_view,
gtk_signal_emit (GTK_OBJECT (shell_view), signals[SHORTCUT_BAR_MODE_CHANGED], mode);
}
+/**
+ * e_shell_view_set_folder_bar_mode:
+ * @shell_view:
+ * @mode:
+ *
+ * Set the visualization mode for the folder bar's subwindow.
+ **/
void
e_shell_view_set_folder_bar_mode (EShellView *shell_view,
EShellViewSubwindowMode mode)
@@ -1036,6 +1043,9 @@ e_shell_view_set_folder_bar_mode (EShellView *shell_view,
gtk_widget_show (priv->storage_set_view_box);
e_paned_set_position (E_PANED (priv->view_hpaned), priv->view_hpaned_position);
}
+
+ e_shell_folder_title_bar_set_clickable (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar),
+ FALSE);
} else {
if (GTK_WIDGET_VISIBLE (priv->storage_set_view_box)) {
gtk_widget_hide (priv->storage_set_view_box);
@@ -1043,6 +1053,9 @@ e_shell_view_set_folder_bar_mode (EShellView *shell_view,
priv->view_hpaned_position = E_PANED (priv->view_hpaned)->child1_size;
e_paned_set_position (E_PANED (priv->view_hpaned), 0);
}
+
+ e_shell_folder_title_bar_set_clickable (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar),
+ TRUE);
}
priv->folder_bar_mode = mode;