diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-view.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 53459c828c..18833542b1 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +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? + 2000-05-04 Ettore Perazzoli <ettore@helixcode.com> * e-shortcut.c (shell_icon_cb): Type of @url changed from `gchar 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); |