diff options
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index f6618f985..af9d26ef2 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -76,6 +76,7 @@ window_cmd_file_print_setup (GtkAction *action, EphyDialog *dialog; dialog = EPHY_DIALOG (ephy_shell_get_print_setup_dialog (ephy_shell)); + ephy_dialog_set_parent (dialog, GTK_WIDGET (window)); ephy_dialog_show (dialog); } @@ -785,6 +786,7 @@ window_cmd_edit_personal_data (GtkAction *action, EphyDialog *dialog; dialog = EPHY_DIALOG (ephy_shell_get_pdm_dialog (ephy_shell)); + ephy_dialog_set_parent (dialog, GTK_WIDGET (window)); ephy_dialog_show (dialog); } @@ -796,6 +798,7 @@ window_cmd_edit_prefs (GtkAction *action, EphyDialog *dialog; dialog = EPHY_DIALOG (ephy_shell_get_prefs_dialog (ephy_shell)); + ephy_dialog_set_parent (dialog, GTK_WIDGET (window)); ephy_dialog_show (dialog); } |