diff options
-rw-r--r-- | src/tab.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -436,12 +436,13 @@ init_non_root(const gchar *uri, MqTab *source) mq_tab_populate_tab(tab); - tab->chrome = mq_tab_chrome_new(tab, uri); tab->web_view = WEBKIT_WEB_VIEW(mq_web_view_new(tab, uri)); g_signal_connect(tab->web_view, "notify::favicon", G_CALLBACK(favicon_cb), tab); g_signal_connect(tab->web_view, "notify::title", G_CALLBACK(title_cb), tab); + + tab->chrome = mq_tab_chrome_new(tab, uri); mq_tab_chrome_set_web_view(tab->chrome, MQ_WEB_VIEW(tab->web_view)); tab->container = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); |