diff options
author | 2014-06-06 05:46:06 +0000 | |
---|---|---|
committer | 2014-06-06 05:46:06 +0000 | |
commit | 2164a4126bc747575a5106067d2e6f10fa373f1b (patch) | |
tree | 291d203dd66334b55d5366e08ae14565deaa325e /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 83531df584d50ca38f483dfd67e3a3a1a2da5cdb (diff) | |
parent | 3ca65c8fd56724a7b4b3440bccf613e5a1a17513 (diff) | |
download | latinime-2164a4126bc747575a5106067d2e6f10fa373f1b.tar.gz latinime-2164a4126bc747575a5106067d2e6f10fa373f1b.tar.xz latinime-2164a4126bc747575a5106067d2e6f10fa373f1b.zip |
am 3ca65c8f: Remove unused supportsSwitchingToShortcutIme attribute
* commit '3ca65c8fd56724a7b4b3440bccf613e5a1a17513':
Remove unused supportsSwitchingToShortcutIme attribute
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index deaf6cdf4..4e12a0a31 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -522,7 +522,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen void loadSettings() { final Locale locale = mSubtypeSwitcher.getCurrentSubtypeLocale(); final EditorInfo editorInfo = getCurrentInputEditorInfo(); - final InputAttributes inputAttributes = new InputAttributes(editorInfo, isFullscreenMode()); + final InputAttributes inputAttributes = new InputAttributes( + editorInfo, isFullscreenMode(), getPackageName()); mSettings.loadSettings(this, locale, inputAttributes); final SettingsValues currentSettingsValues = mSettings.getCurrent(); AudioAndHapticFeedbackManager.getInstance().onSettingsChanged(currentSettingsValues); |