diff options
Diffstat (limited to 'new/window_unix.c')
| -rw-r--r-- | new/window_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/new/window_unix.c b/new/window_unix.c index c4ec6d4..d627335 100644 --- a/new/window_unix.c +++ b/new/window_unix.c @@ -68,7 +68,8 @@ void uiWindowSetTitle(uiWindow *w, const char *title) void uiWindowShow(uiWindow *w) { - gtk_widget_show_all(w->widget); + // don't use gtk_widget_show_all(); that will override user hidden settings + gtk_widget_show(w->widget); } void uiWindowHide(uiWindow *w) |
