diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-05-05 05:02:42 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-05-05 05:02:42 +0800 |
commit | be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4 (patch) | |
tree | 52428a7f42b8078faea360bc31b8e840d6e30dd5 /shell/e-shell-view.c | |
parent | 4856f92e7b97d7883e2a12df186205d4d4a2168a (diff) | |
download | gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar.gz gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar.bz2 gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar.lz gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar.xz gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.tar.zst gsoc2013-evolution-be8e1b8c1f5e52bdb0e3c674da29dc3ca8bc49f4.zip |
turned the notebook border off. The calendar looks better without it. If
2000-05-03 Damon Chaplin <damon@helixcode.com>
* e-shell-view.c (e_shell_view_new): turned the notebook border off.
The calendar looks better without it. If any of the views want a
border they should create it themselves, shouldn't they?
svn path=/trunk/; revision=2801
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 71d5adb736..763359fd35 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -412,6 +412,9 @@ e_shell_view_new (EShell *eshell, EFolder *efolder, gboolean show_shortcut_bar) if (!eshell_view->priv->notebook) { eshell_view->priv->notebook = gtk_notebook_new(); + gtk_notebook_set_show_border ( + GTK_NOTEBOOK (eshell_view->priv->notebook), + FALSE); gtk_notebook_set_show_tabs ( GTK_NOTEBOOK (eshell_view->priv->notebook), FALSE); |