diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 5355d75f9..c2b6e9961 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1127,14 +1127,17 @@ update_favicon_control (EphyWindow *window) const char *location; EphyFaviconCache *cache; GdkPixbuf *pixbuf = NULL; + EphyTab *tab; + + tab = ephy_window_get_active_tab (window); + g_return_if_fail (tab != NULL); cache = ephy_embed_shell_get_favicon_cache (EPHY_EMBED_SHELL (ephy_shell)); - location = ephy_tab_get_favicon_url (window->priv->active_tab); + location = ephy_tab_get_favicon_url (tab); if (location) { - pixbuf = ephy_favicon_cache_get (cache, location); } gtk_window_set_icon (GTK_WINDOW (window), pixbuf); |