summaryrefslogtreecommitdiffstats
path: root/src/tab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.c')
-rw-r--r--src/tab.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tab.c b/src/tab.c
index d1da243..12efad2 100644
--- a/src/tab.c
+++ b/src/tab.c
@@ -33,6 +33,8 @@ mq_tab_new(gchar *uri, GtkWidget *tab_image, GtkWidget *tab_label)
MqTab *tab;
tab = malloc(sizeof(*tab));
+ tab->tab_image = tab_image;
+ tab->tab_label = tab_label;
tab->chrome = mq_tab_chrome_new(uri, tab_image, tab_label);
tab->body = mq_tab_body_new(uri);
tab->web_view = mq_tab_body_get_web_view(tab->body);