diff options
author | Christian Persch <chpe@svn.gnome.org> | 2007-01-29 04:32:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-01-29 04:32:23 +0800 |
commit | b78dc365fa09e15f41357d177b02ae903ebabaa8 (patch) | |
tree | 4bd998ecc8f715478fae676caa3bb713398eef30 | |
parent | 91c584832a6703fc1435922117bc0e9f6d9b1c1c (diff) | |
download | gsoc2013-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
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | data/default-prefs-common.js | 11 |
2 files changed, 17 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2007-01-28 Christian Persch <chpe@svn.gnome.org> + * data/default-prefs-common.js: + + Set bidi caret movement pref to mimick gtk widgets. + +2007-01-28 Christian Persch <chpe@svn.gnome.org> + * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus): Fix error condition check. 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); + |