1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Set WM_TRANSIENT_FOR appropriately on the "about" box so that fvwm doesn't

insist on finding a bit of spare screen to put it in.  Still pondering whether
it's sensible to do this with the "change settings" box as well.

[originally from svn r8970]
This commit is contained in:
Ben Harris 2010-06-29 22:00:43 +00:00
parent 9f52d6c905
commit edfc6a05ec

View File

@ -3506,6 +3506,8 @@ void about_box(void *window)
gtk_widget_show(w);
set_transient_window_pos(GTK_WIDGET(window), aboutbox);
gtk_window_set_transient_for(GTK_WINDOW(aboutbox),
GTK_WINDOW(window));
gtk_widget_show(aboutbox);
}