From 45b67d7da68a96a9cd0a93f9f5ad8bf14e410e71 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 2 Jul 2015 08:57:35 -0400 Subject: [PATCH] Whoops, fixed the GTK+ containerWidget bug. Wrong function in the control base code! --- redo/unix/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/unix/control.c b/redo/unix/control.c index 822fd1bb..a431dd48 100644 --- a/redo/unix/control.c +++ b/redo/unix/control.c @@ -40,7 +40,7 @@ static void singleWidgetResize(uiControl *c, intmax_t x, intmax_t y, intmax_t wi a.y = y; a.width = width; a.height = height; - gtk_widget_set_allocation(WIDGET(c), &a); + gtk_widget_size_allocate(WIDGET(c), &a); } static uiSizing *singleWidgetSizing(uiControl *c)