Hi,
I have a problem with modal dialogs using Win32 version of GTK.
I am using:
gtk_window_set_modal(GTK_WINDOW(myDlg),true);
gtk_window_set_transient_for(GTK_WINDOW(myDlg),GTK_WINDOW(_mainwnd));
although I guess that the gtk_window_set_transient_for is redundant.
The problem is, if my app is active, and the dialog is active, if I Alt-Tab
to another application, I then Alt-Tab back to my app, and close the
dialog,
the previous application is enabled, covering my app's main window.
How do I get around this?
Thanks,
Clive