summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tab-chrome.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c
index 71eb431..1785001 100644
--- a/src/tab-chrome.c
+++ b/src/tab-chrome.c
@@ -456,9 +456,9 @@ mq_tab_chrome_new(gchar *uri)
chrome = malloc(sizeof(*chrome));
- chrome->container = gtk_grid_new();
- gtk_grid_attach(GTK_GRID(chrome->container),
- navigation_toolbar_new(chrome, uri), 0, 0, 1, 1);
+ chrome->container = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
+ gtk_box_pack_start(GTK_BOX(chrome->container),
+ navigation_toolbar_new(chrome, uri), FALSE, FALSE, 0);
return chrome;
}