forked from AuroraMiddleware/gtk
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent Duguet.
2002-09-05 Tor Lillqvist <tml@iki.fi> * gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for): Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent Duguet.
This commit is contained in:
parent
234acfd024
commit
41590bea09
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -5,6 +5,10 @@
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
|
||||
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
|
||||
Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1525,7 +1525,7 @@ gdk_window_set_transient_for (GdkWindow *window,
|
||||
if (!SetParent (window_id, parent_id))
|
||||
WIN32_API_FAILED ("SetParent");
|
||||
#else /* make the modal window topmost instead */
|
||||
if (!SetWindowPos (window_id, HWND_TOPMOST, 0, 0, 0, 0,
|
||||
if (!SetWindowPos (window_id, HWND_NOTOPMOST, 0, 0, 0, 0,
|
||||
SWP_NOMOVE | SWP_NOSIZE))
|
||||
WIN32_API_FAILED ("SetWindowPos");
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user