summaryrefslogtreecommitdiff
path: root/new/container_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'new/container_unix.c')
-rw-r--r--new/container_unix.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/new/container_unix.c b/new/container_unix.c
index 5ee421c..ec5d2f0 100644
--- a/new/container_unix.c
+++ b/new/container_unix.c
@@ -117,7 +117,12 @@ static void uiContainer_class_init(uiContainerClass *class)
GtkWidget *newContainer(void)
{
- return GTK_WIDGET(g_object_new(uiContainerType, NULL));
+ GtkWidget *w;
+
+ w = GTK_WIDGET(g_object_new(uiContainerType, NULL));
+ // call gtk_widget_show_all() here to make the container visible
+ gtk_widget_show_all(w);
+ return w;
}
void updateParent(uintptr_t parent)