98546: Fix Unix too, and make mac prefs the default. r=pink, sr=sfraser

git-svn-id: svn://10.0.0.236/trunk@105836 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akkana%netscape.com 2001-10-19 22:07:17 +00:00
parent 7348edaaeb
commit 4d4b1e1f39
4 changed files with 10 additions and 7 deletions

View File

@ -581,6 +581,7 @@ pref("bidi.characterset", 1);
pref("browser.throbber.url","chrome://navigator-region/locale/region.properties");
// used for double-click word selection behavior. Mac will override.
pref("layout.word_select.eat_space_to_next_word", true);
pref("layout.word_select.stop_at_punctuation", false);
// used for double-click word selection behavior. Win will override.
pref("layout.word_select.eat_space_to_next_word", false);
pref("layout.word_select.stop_at_punctuation", true);

View File

@ -44,10 +44,6 @@ pref("ui.key.saveLink.shift", false); // true = shift, false = meta
pref("editor.use_html_editor", false);
pref("editor.use_image_editor", false);
// override double-click word selection behavior.
pref("layout.word_select.eat_space_to_next_word", false);
pref("layout.word_select.stop_at_punctuation", true);
// should a GURL event open a new window or re-use (4.x compat)
pref("browser.always_reuse_window", false);

View File

@ -68,6 +68,9 @@ pref("clipboard.autocopy", true);
pref("browser.urlbar.clickSelectsAll", false);
// override double-click word selection behavior.
pref("layout.word_select.stop_at_punctuation", false);
// autocomplete keyboard grab workaround
pref("autocomplete.grab_during_popup", true);
pref("autocomplete.ungrab_during_mode_switch", true);

View File

@ -174,3 +174,6 @@ pref("netinst.profile.show_dir_overwrite_msg", true);
// default is 5 minutes, i.e., 5 * 60 seconds = 300
pref("mail.windows_xp_integration.unread_count_interval", 300);
// override double-click word selection behavior.
pref("layout.word_select.eat_space_to_next_word", true);
pref("layout.word_select.stop_at_punctuation", false);