From 63da6387f04743f2509e16e3cc212b7ef6e9aca8 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Wed, 27 Sep 2017 16:16:54 -0400 Subject: MqTab: Don't save favicon surface --- diff --git a/src/tab.c b/src/tab.c index 3304bd0..a29c64d 100644 --- a/src/tab.c +++ b/src/tab.c @@ -28,9 +28,9 @@ #include "tab-body.h" static void -update_tab_image(MqTab *tab) +update_tab_image(MqTab *tab, cairo_surface_t *favicon) { - gtk_image_set_from_surface(GTK_IMAGE(tab->tab_image), tab->favicon); + gtk_image_set_from_surface(GTK_IMAGE(tab->tab_image), favicon); } static void @@ -284,8 +284,10 @@ static void favicon_cb(WebKitWebView __attribute__((unused)) *web_view, GParamSpec __attribute__((unused)) *paramspec, MqTab *tab) { - tab->favicon = webkit_web_view_get_favicon(tab->web_view); - update_tab_image(tab); + cairo_surface_t *favicon; + + favicon = webkit_web_view_get_favicon(tab->web_view); + update_tab_image(tab, favicon); } static void diff --git a/src/tab.h b/src/tab.h index b5ff654..7e3c379 100644 --- a/src/tab.h +++ b/src/tab.h @@ -47,7 +47,6 @@ struct MqTab { GtkWidget *tab; GtkWidget *tab_image; GtkWidget *tab_label; - cairo_surface_t *favicon; const gchar *title; WebKitWebView *web_view; GtkWidget *popover; -- cgit v0.9.1