diff options
Diffstat (limited to 'new/newcontrol_unix.c')
| -rw-r--r-- | new/newcontrol_unix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/new/newcontrol_unix.c b/new/newcontrol_unix.c index 0f6388b..feedafe 100644 --- a/new/newcontrol_unix.c +++ b/new/newcontrol_unix.c @@ -221,6 +221,9 @@ uiControl *uiUnixNewControl(GType type, gboolean inScrolledWindow, gboolean scro // and let's free everything with the immediate widget g_signal_connect(s->immediate, "destroy", G_CALLBACK(onDestroy), c); + // finally, call gtk_widget_show_all() here to set the initial visibility of the widget + gtk_widget_show_all(s->immediate); + c->internal = s; return c; } |
