diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-09-17 00:04:07 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-09-17 00:04:07 (EDT) |
commit | 307fc72a11e5a6275110beb81b21d8d50e9c8100 (patch) | |
tree | d573a45e29dd522aec8bbc7a904bb067f99cdc08 /src | |
parent | 2b665d00e4783ff04ad1a130b0e9d9a19cd08a74 (diff) | |
download | marquee-307fc72a11e5a6275110beb81b21d8d50e9c8100.zip marquee-307fc72a11e5a6275110beb81b21d8d50e9c8100.tar.gz marquee-307fc72a11e5a6275110beb81b21d8d50e9c8100.tar.bz2 |
mq_tab_new(): Call mq_tab_chrome_set_web_view()
Diffstat (limited to 'src')
-rw-r--r-- | src/tab.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,8 @@ mq_tab_new(gchar *uri) tab = malloc(sizeof(*tab)); tab->chrome = mq_tab_chrome_new(uri); tab->body = mq_tab_body_new(uri); + mq_tab_chrome_set_web_view(tab->chrome, + mq_tab_body_get_web_view(tab->body)); tab->container = gtk_grid_new(); gtk_grid_attach(GTK_GRID(tab->container), |