aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorChristian Persch <chpe@svn.gnome.org>2007-01-29 04:32:23 +0800
committerChristian Persch <chpe@src.gnome.org>2007-01-29 04:32:23 +0800
commitb78dc365fa09e15f41357d177b02ae903ebabaa8 (patch)
tree4bd998ecc8f715478fae676caa3bb713398eef30 /data
parent91c584832a6703fc1435922117bc0e9f6d9b1c1c (diff)
downloadgsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar.gz
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar.bz2
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar.lz
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar.xz
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.tar.zst
gsoc2013-epiphany-b78dc365fa09e15f41357d177b02ae903ebabaa8.zip
Set bidi caret movement pref to mimick gtk widgets.
2007-01-28 Christian Persch <chpe@svn.gnome.org> * data/default-prefs-common.js: Set bidi caret movement pref to mimick gtk widgets. svn path=/trunk/; revision=6864
Diffstat (limited to 'data')
-rw-r--r--data/default-prefs-common.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/data/default-prefs-common.js b/data/default-prefs-common.js
index a444c0b1c..cc2af03c9 100644
--- a/data/default-prefs-common.js
+++ b/data/default-prefs-common.js
@@ -146,3 +146,14 @@ pref("general.warnOnAboutConfig", true);
// enable negotiate extension
pref("network.negotiate-auth.trusted-uris", "https://");
+
+// JS annoyances
+pref("dom.disable_window_flip", true);
+
+// Whether delete and backspace should immediately delete characters not
+// visually adjacent to the caret, or adjust the visual position of the caret
+// on the first keypress and delete the character on a second keypress
+// (added in bug https://bugzilla.mozilla.org/show_bug.cgi?id=328834)
+// set to true for parity with gtk entries
+pref("bidi.edit.delete_immediately", true);
+