Commit bf54c0d56dded557b1c94760a2547437583072f9
1 parent
17b42523
Exists in
master
and in
1 other branch
Settings dialog should destroy with parent.
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
src/dialogs/settings/dialog.c
... | ... | @@ -358,6 +358,7 @@ GtkWidget * v3270_settings_get_edit_dialog(GtkWidget *settings, GtkWidget *termi |
358 | 358 | |
359 | 359 | gtk_window_set_transient_for(GTK_WINDOW(dialog),GTK_WINDOW(gtk_widget_get_toplevel(terminal))); |
360 | 360 | gtk_window_set_modal(GTK_WINDOW(dialog),modal); |
361 | + gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); | |
361 | 362 | |
362 | 363 | v3270_settings_dialog_set_terminal_widget(dialog, terminal); |
363 | 364 | ... | ... |