diff options
author | 2011-12-08 23:09:33 -0800 | |
---|---|---|
committer | 2011-12-08 23:09:33 -0800 | |
commit | 0c3b8ce842140aad2087b6ec391177999b87cbb4 (patch) | |
tree | 2566626e032f25a165e774dcbbdcf1d876522bd9 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 784181e29fc857cd3a628efa102dc84cd629feb8 (diff) | |
parent | ed432962175a6f783428bbdcd7168d20097ec05d (diff) | |
download | latinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.tar.gz latinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.tar.xz latinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.zip |
Merge "Move settings method from Utils to SettingsValues"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 602de9203..4772334ce 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2323,7 +2323,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar // update keypress sound volume private void updateSoundEffectVolume() { - mFxVolume = Utils.getCurrentKeypressSoundVolume(mPrefs, mResources); + mFxVolume = SettingsValues.getCurrentKeypressSoundVolume(mPrefs, mResources); } // update flags for silent mode @@ -2336,7 +2336,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } private void updateKeypressVibrationDuration() { - mKeypressVibrationDuration = Utils.getCurrentVibrationDuration(mPrefs, mResources); + mKeypressVibrationDuration = SettingsValues.getCurrentVibrationDuration(mPrefs, mResources); } private void playKeyClick(int primaryCode) { |