aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-03-13 07:18:19 +0800
committerChristian Persch <chpe@src.gnome.org>2005-03-13 07:18:19 +0800
commit8310f6e1514c5e2a4cfb41a04542a11a0ccedf64 (patch)
treef457c96cdd8c119bcc08a3ae2f2a4a38d010c76e
parent5ee23a2c600d1cc951d185d283c9c0b5565b5991 (diff)
downloadgsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar.gz
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar.bz2
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar.lz
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar.xz
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.tar.zst
gsoc2013-epiphany-8310f6e1514c5e2a4cfb41a04542a11a0ccedf64.zip
Don't force those dialogues to be in front.
2005-03-13 Christian Persch <chpe@cvs.gnome.org> * src/window-commands.c: (window_cmd_file_print_setup), (window_cmd_edit_personal_data), (window_cmd_edit_prefs): Don't force those dialogues to be in front.
-rw-r--r--ChangeLog7
-rw-r--r--src/window-commands.c3
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a479f173..dc96ece8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-03-13 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/window-commands.c: (window_cmd_file_print_setup),
+ (window_cmd_edit_personal_data), (window_cmd_edit_prefs):
+
+ Don't force those dialogues to be in front.
+
2005-03-11 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-toolbar.c: (ephy_toolbar_activate_location):
diff --git a/src/window-commands.c b/src/window-commands.c
index 0da0a19ac..e4d54d24c 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -72,7 +72,6 @@ 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);
}
@@ -721,7 +720,6 @@ 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);
}
@@ -733,7 +731,6 @@ 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);
}