diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-15 08:14:42 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-15 08:14:42 +0800 |
commit | 82e77d6d8e73f418ae75d975324dbfa59218c4cd (patch) | |
tree | 260698e8c301d03f914c8f755abceb6c5cb7530b /shell/e-shell-view.c | |
parent | b8681b4d2546a139781f8f6aea05c0fd29343f30 (diff) | |
download | gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar.gz gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar.bz2 gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar.lz gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar.xz gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.tar.zst gsoc2013-evolution-82e77d6d8e73f418ae75d975324dbfa59218c4cd.zip |
Added a note field.
2000-04-14 Christopher James Lahey <clahey@helixcode.com>
* addressbook/backend/ebook/e-card.c,
addressbook/backend/ebook/e-card.h,
addressbook/backend/pas/pas-backend-file.c,
addressbook/backend/pas/pas-backend-ldap.c,
addressbook/contact-editor/e-contact-editor.c: Added a note field.
From shell/ChangeLog:
2000-04-14 Christopher James Lahey <clahey@helixcode.com>
* e-shell-view.c: Made the left pane of the shell view not
autoresize.
svn path=/trunk/; revision=2444
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 876c34851b..ce77f55055 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -106,7 +106,7 @@ e_shell_view_setup_shortcut_display (EShellView *eshell_view) gtk_paned_set_position (GTK_PANED (eshell_view->shortcut_hpaned), 100); gtk_paned_pack1 (GTK_PANED (eshell_view->shortcut_hpaned), - eshell_view->shortcut_bar, FALSE, TRUE); + eshell_view->shortcut_bar, FALSE, FALSE); gtk_widget_show (eshell_view->shortcut_bar); gnome_app_set_contents (GNOME_APP (eshell_view), eshell_view->shortcut_hpaned); @@ -309,7 +309,7 @@ e_shell_view_new (EShell *eshell, EFolder *efolder, gboolean show_shortcut_bar) if (eshell_view->shortcut_displayed){ gtk_paned_pack2 ( GTK_PANED (eshell_view->shortcut_hpaned), - eshell_view->priv->notebook, FALSE, TRUE); + eshell_view->priv->notebook, TRUE, TRUE); } else { gnome_app_set_contents (GNOME_APP (eshell_view), |