mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Call gdk_window_withdraw rather than gdk_window_hide; this makes things
Mon Jun 12 16:58:40 2000 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw rather than gdk_window_hide; this makes things work correctly if the window is programmatically hidden while iconified.
This commit is contained in:
parent
8b72011482
commit
bae5667ca3
@ -4,7 +4,7 @@ Makefile.in
|
||||
.deps
|
||||
_libs
|
||||
.libs
|
||||
libgdk-1.1.la
|
||||
libgdk-*.la
|
||||
gdkcursors.h
|
||||
gdkkeysyms.h
|
||||
libgdk.la
|
||||
|
8
gdk/nanox/.cvsignore
Normal file
8
gdk/nanox/.cvsignore
Normal file
@ -0,0 +1,8 @@
|
||||
*.lo
|
||||
Makefile
|
||||
Makefile.in
|
||||
.deps
|
||||
_libs
|
||||
.libs
|
||||
*.la
|
||||
gxid
|
@ -4,7 +4,7 @@ Makefile.in
|
||||
.deps
|
||||
_libs
|
||||
.libs
|
||||
libgtk-1.1.la
|
||||
libgtk-*.la
|
||||
testcalendar
|
||||
testgtk
|
||||
testinput
|
||||
|
@ -981,7 +981,7 @@ gtk_window_unmap (GtkWidget *widget)
|
||||
g_return_if_fail (GTK_IS_WINDOW (widget));
|
||||
|
||||
GTK_WIDGET_UNSET_FLAGS (widget, GTK_MAPPED);
|
||||
gdk_window_hide (widget->window);
|
||||
gdk_window_withdraw (widget->window);
|
||||
|
||||
window = GTK_WINDOW (widget);
|
||||
window->use_uposition = TRUE;
|
||||
|
@ -269,7 +269,7 @@ create_buttons (void)
|
||||
if (!GTK_WIDGET_VISIBLE (window))
|
||||
gtk_widget_show_all (window);
|
||||
else
|
||||
gtk_widget_destroy (window);
|
||||
gtk_widget_hide (window);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -269,7 +269,7 @@ create_buttons (void)
|
||||
if (!GTK_WIDGET_VISIBLE (window))
|
||||
gtk_widget_show_all (window);
|
||||
else
|
||||
gtk_widget_destroy (window);
|
||||
gtk_widget_hide (window);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user