From bd8de625888d481cb6c6ce73721d3597349f5afb Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 10 Sep 2003 08:11:43 +0000 Subject: Make spinner status per tab. Remove the default to tab pref, use tab by 2003-09-10 Marco Pesenti Gritti * 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. --- src/ephy-shell.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/ephy-shell.c') diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 4fe89e069..7e29fd293 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -397,7 +397,7 @@ ephy_shell_new_tab (EphyShell *shell, EphyWindow *window; EphyTab *tab; EphyEmbed *embed; - gboolean in_new_window; + gboolean in_new_window = TRUE; gboolean grouped; gboolean jump_to; EphyEmbed *previous_embed = NULL; @@ -405,8 +405,6 @@ ephy_shell_new_tab (EphyShell *shell, gint position; Toolbar *toolbar; - in_new_window = !eel_gconf_get_boolean (CONF_TABS_TABBED); - if (flags & EPHY_NEW_TAB_IN_NEW_WINDOW) in_new_window = TRUE; if (flags & EPHY_NEW_TAB_IN_EXISTING_WINDOW) in_new_window = FALSE; -- cgit