Revert I871cfaaf Latin IME Keyboard sounds off by default

Change-Id: If4b90daa04df0b554faf2886fe83410e086e5b9c
main
Jean-Michel Trivi 2011-02-04 17:44:17 -08:00
parent 435ea0f5dc
commit 985fb645ef
1 changed files with 1 additions and 1 deletions

View File

@ -2121,7 +2121,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
mVibrateOn = vibrator != null && vibrator.hasVibrator() mVibrateOn = vibrator != null && vibrator.hasVibrator()
&& prefs.getBoolean(Settings.PREF_VIBRATE_ON, false); && prefs.getBoolean(Settings.PREF_VIBRATE_ON, false);
mSoundOn = prefs.getBoolean(Settings.PREF_SOUND_ON, true); mSoundOn = prefs.getBoolean(Settings.PREF_SOUND_ON, false);
mPopupOn = isPopupEnabled(prefs); mPopupOn = isPopupEnabled(prefs);
mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true); mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true);