diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 13:59:16 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 13:59:16 +0800 |
commit | fa88272dacec915ac2b96d772848943fc8e0013d (patch) | |
tree | 1e75040e360d3670490fad9f19f1843340be6262 /shell | |
parent | 45ca18de52c18e438590529ab69437a97c38f5e5 (diff) | |
download | gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar.gz gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar.bz2 gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar.lz gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar.xz gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.tar.zst gsoc2013-evolution-fa88272dacec915ac2b96d772848943fc8e0013d.zip |
Don't set the paned tree position.
* e-shell-view.c (setup_widgets): Don't set the paned tree
position.
svn path=/trunk/; revision=12250
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-view.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b006f6ba7d..4334ec9bc9 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-08-20 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-view.c (setup_widgets): Don't set the paned tree + position. + 2001-08-19 Chris Toshok <toshok@ximian.com> * evolution-shell-component.c (impl__get_supported_types): fill diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index f3af270afe..46b31f3eef 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -906,7 +906,6 @@ setup_widgets (EShellView *shell_view) priv->view_hpaned = e_hpaned_new (); e_paned_pack1 (E_PANED (priv->view_hpaned), priv->storage_set_view_box, FALSE, FALSE); e_paned_pack2 (E_PANED (priv->view_hpaned), priv->notebook, TRUE, FALSE); - e_paned_set_position (E_PANED (priv->view_hpaned), DEFAULT_TREE_WIDTH); gray_bar = e_gray_bar_new (); gtk_container_add (GTK_CONTAINER (gray_bar), priv->folder_title_bar); |