From 49d13c03c084678329f5aa4411d9775b01a70fd1 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 22 Sep 2017 01:41:33 -0400 Subject: MqTabChrome: Convert container from grid to box --- (limited to 'src/tab-chrome.c') 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; } -- cgit v0.9.1