diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-notebook.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-04-14 Frank Belew <frb@ximian.com> + + * lib/widgets/ephy-notebook.c (update_tabs_visibility): + + If user prefers tabs (CONF_TABS_TABBED), always show tab bar + 2003-04-13 Marco Pesenti Gritti <marco@it.gnome.org> * data/bme.desktop.in: diff --git a/lib/widgets/ephy-notebook.c b/lib/widgets/ephy-notebook.c index b2ee52b57..6ce34bb50 100644 --- a/lib/widgets/ephy-notebook.c +++ b/lib/widgets/ephy-notebook.c @@ -791,7 +791,8 @@ update_tabs_visibility (EphyNotebook *nb, gboolean before_inserting) if (before_inserting) tabs_num--; - show_tabs = gtk_notebook_get_nth_page (GTK_NOTEBOOK (nb), tabs_num) > 0; + show_tabs = eel_gconf_get_boolean (CONF_TABS_TABBED) || + gtk_notebook_get_nth_page (GTK_NOTEBOOK (nb), tabs_num) > 0; gtk_notebook_set_show_tabs (GTK_NOTEBOOK (nb), show_tabs); } |