From Lars Ruoff:

Do not make dialog windows transient to the Wireshark top level window on
WIN32, since this causes some strange behaviour on Windows.
See http://www.wireshark.org/lists/wireshark-dev/200909/msg00184.html

svn path=/trunk/; revision=30667
This commit is contained in:
Jaap Keuter 2009-10-22 19:40:15 +00:00
parent f5b4b6e32f
commit eae4219cea
1 changed files with 7 additions and 0 deletions

View File

@ -419,9 +419,16 @@ dlg_window_new(const gchar *title)
* to capture, and might also simplify the job of having the GUI main
* loop wait both for user input and packet arrival.
*/
/*
* On Windows, making the dialogs transient to top_level behaves strangely.
* It is not possible any more to bring the top level window to front easily.
* So we don't do this on Windows.
*/
#ifndef _WIN32
if (top_level) {
gtk_window_set_transient_for(GTK_WINDOW(win), GTK_WINDOW(top_level));
}
#endif /*_WIN32*/
return win;
}