Whoops, fixed the GTK+ containerWidget bug. Wrong function in the control base code!

This commit is contained in:
Pietro Gagliardi 2015-07-02 08:57:35 -04:00
parent 31bf280d4f
commit 45b67d7da6
1 changed files with 1 additions and 1 deletions

View File

@ -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)