aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-04-02 11:54:10 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-04-02 11:54:10 +0800
commitb1dad9521d6bb52c40b5f6b7023093c78bec5a7c (patch)
treee66481cc5a36ab6b42bbde696dad02461d1fdfff /shell
parent136cf86a7cbf3b0e20720d2a1ebe7521f617b7bb (diff)
downloadgsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar.gz
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar.bz2
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar.lz
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar.xz
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.tar.zst
gsoc2013-evolution-b1dad9521d6bb52c40b5f6b7023093c78bec5a7c.zip
[#40652]
2003-04-02 Not Zed <NotZed@Ximian.com> [#40652] * e-shell-view.c (setup_widgets): Pack the folder and shortcut bars into the paned as sizeable. svn path=/trunk/; revision=20630
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-view.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index ee33bb39e8..325a3f1c6d 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2003-04-02 Not Zed <NotZed@Ximian.com>
+ [#40652]
+
+ * e-shell-view.c (setup_widgets): Pack the folder and shortcut
+ bars into the paned as sizeable.
+
[#39467]
* e-shell.c (e_shell_construct): Change the splash logic slightly,
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 9e9468145b..c964b7c38c 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1376,7 +1376,7 @@ setup_widgets (EShellView *shell_view)
G_CALLBACK (forward_clicked_callback), shell_view);
priv->view_hpaned = gtk_hpaned_new ();
- gtk_paned_pack1 (GTK_PANED (priv->view_hpaned), priv->storage_set_view_box, FALSE, FALSE);
+ gtk_paned_pack1 (GTK_PANED (priv->view_hpaned), priv->storage_set_view_box, TRUE, FALSE);
gtk_paned_pack2 (GTK_PANED (priv->view_hpaned), priv->notebook, TRUE, FALSE);
gray_bar = gtk_event_box_new ();
@@ -1387,7 +1387,7 @@ setup_widgets (EShellView *shell_view)
priv->hpaned = gtk_hpaned_new ();
gtk_container_add (GTK_CONTAINER (priv->shortcut_frame), priv->shortcut_bar);
- gtk_paned_pack1 (GTK_PANED (priv->hpaned), priv->shortcut_frame, FALSE, FALSE);
+ gtk_paned_pack1 (GTK_PANED (priv->hpaned), priv->shortcut_frame, TRUE, FALSE);
gtk_paned_pack2 (GTK_PANED (priv->hpaned), priv->view_vbox, TRUE, FALSE);
gtk_paned_set_position (GTK_PANED (priv->hpaned), DEFAULT_SHORTCUT_BAR_WIDTH);