diff options
author | Li Yuan <li.yuan@sun.com> | 2006-07-06 10:56:36 +0800 |
---|---|---|
committer | Li Yuan <liyuan@src.gnome.org> | 2006-07-06 10:56:36 +0800 |
commit | 69108085da2caed7292a0e7179339be8c2a07ca0 (patch) | |
tree | f4cef45f2fcf360161d5b0854a73ff31da06f1c4 | |
parent | 460879a1247879d02034776ff391727379759628 (diff) | |
download | gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar.gz gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar.bz2 gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar.lz gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar.xz gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.tar.zst gsoc2013-evolution-69108085da2caed7292a0e7179339be8c2a07ca0.zip |
Fix for #346613. Make the view_notebook cannot be resized shorter than its
2006-07-05 Li Yuan <li.yuan@sun.com>
* e-shell-window.c: (setup_widgets):
Fix for #346613.
Make the view_notebook cannot be resized shorter than its need.
svn path=/trunk/; revision=32237
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-window.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 2e50b3f708..44a9e1e9c5 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2006-07-05 Li Yuan <li.yuan@sun.com> + + * e-shell-window.c: (setup_widgets): + Fix for #346613. + Make the view_notebook cannot be resized shorter than its need. + 2006-06-21 Srinivasa Ragavan <sragavan@novell.com> * e-user-creatable-items-handler.c: (setup_toolbar_button): Fixed a diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index f0c5903936..2a4f3f5cc7 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -670,7 +670,7 @@ setup_widgets (EShellWindow *window) priv->view_notebook = gtk_notebook_new (); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->view_notebook), FALSE); gtk_notebook_set_show_border (GTK_NOTEBOOK (priv->view_notebook), FALSE); - gtk_paned_pack2 (GTK_PANED (priv->paned), priv->view_notebook, TRUE, TRUE); + gtk_paned_pack2 (GTK_PANED (priv->paned), priv->view_notebook, FALSE, FALSE); gtk_widget_show (priv->view_notebook); gtk_paned_set_position (GTK_PANED (priv->paned), |