aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp3
2 files changed, 3 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a74bca52..c2c18e24d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,3 @@
-2003-08-02 Marco Pesenti Gritti <marco@it.gnome.org>
-
- * embed/mozilla/mozilla-embed-single.cpp:
-
- Do not disable window raising anymore, mozilla seem
- to behave correctly now.
-
2003-08-02 Christian Persch
* src/ephy-encodings-menu.c: (build_group):
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp
index cf8854e42..3a296f20a 100644
--- a/embed/mozilla/mozilla-embed-single.cpp
+++ b/embed/mozilla/mozilla-embed-single.cpp
@@ -324,6 +324,9 @@ mozilla_set_default_prefs (MozillaEmbedSingle *mes)
prefService->GetBranch ("", getter_AddRefs(pref));
if (pref == NULL) return FALSE;
+ /* Don't allow mozilla to raise window when setting focus (work around bugs) */
+ pref->SetBoolPref ("mozilla.widget.raise-on-setfocus", PR_FALSE);
+
/* set default search engine */
pref->SetCharPref ("keyword.URL", "http://www.google.com/search?q=");
pref->SetBoolPref ("keyword.enabled", PR_TRUE);