diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-09-10 16:11:43 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-10 16:11:43 +0800 |
commit | bd8de625888d481cb6c6ce73721d3597349f5afb (patch) | |
tree | a7dc459c2a4902bea006d574ff416c4421f2ca27 /src/ephy-notebook.c | |
parent | 50848b9653f92e9acedd1cfc33dfefd10f0df201 (diff) | |
download | gsoc2013-epiphany-bd8de625888d481cb6c6ce73721d3597349f5afb.tar.gz gsoc2013-epiphany-bd8de625888d481cb6c6ce73721d3597349f5afb.tar.zst gsoc2013-epiphany-bd8de625888d481cb6c6ce73721d3597349f5afb.zip |
Make spinner status per tab. Remove the default to tab pref, use tab by
2003-09-10 Marco Pesenti Gritti <marco@gnome.org>
* data/epiphany.schemas.in:
* data/glade/prefs-dialog.glade:
* lib/ephy-prefs.h:
* src/ephy-notebook.c: (update_tabs_visibility),
(ephy_notebook_init):
* src/ephy-shell.c: (ephy_shell_new_tab):
* src/ephy-tab.c: (open_link_in_new_tab):
* src/ephy-window.c: (sync_tab_load_status),
(ephy_window_set_active_tab), (tab_added_cb), (tab_removed_cb):
* src/prefs-dialog.c:
Make spinner status per tab.
Remove the default to tab pref, use tab by default for middle
click on links, add a always_show_tabs_bar hidden pref.
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 1ca616eed..9600673cd 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -716,7 +716,7 @@ update_tabs_visibility (EphyNotebook *nb, gboolean before_inserting) if (before_inserting) num++; - show_tabs = (eel_gconf_get_boolean (CONF_TABS_TABBED) || num > 1) && + show_tabs = (eel_gconf_get_boolean (CONF_ALWAYS_SHOW_TABS_BAR) || num > 1) && nb->priv->show_tabs == TRUE; gtk_notebook_set_show_tabs (GTK_NOTEBOOK (nb), show_tabs); @@ -770,7 +770,7 @@ ephy_notebook_init (EphyNotebook *notebook) GDK_ACTION_MOVE | GDK_ACTION_COPY); notebook->priv->tabs_vis_notifier_id = eel_gconf_notification_add - (CONF_TABS_TABBED, + (CONF_ALWAYS_SHOW_TABS_BAR, (GConfClientNotifyFunc)tabs_visibility_notifier, notebook); } |