diff options
author | 2015-04-22 23:17:40 +0000 | |
---|---|---|
committer | 2015-04-22 23:17:40 +0000 | |
commit | 9d95f80e70105568cec71ceb27be82305391b982 (patch) | |
tree | 863b6215fa89528316c496cb1a562dbd06763d47 /java/src/com/android/inputmethod/latin/settings/SettingsValues.java | |
parent | f4ddb06ec2b43d83b9c435a510efbedbbe80d577 (diff) | |
parent | a2376cd2b4fea6b655fdcdf794cf16b7bbe1a161 (diff) | |
download | latinime-9d95f80e70105568cec71ceb27be82305391b982.tar.gz latinime-9d95f80e70105568cec71ceb27be82305391b982.tar.xz latinime-9d95f80e70105568cec71ceb27be82305391b982.zip |
am a2376cd2: Restore switch for showing app icon.
* commit 'a2376cd2b4fea6b655fdcdf794cf16b7bbe1a161':
Restore switch for showing app icon.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/SettingsValues.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/SettingsValues.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java index 94573a6d5..57018244f 100644 --- a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java +++ b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java @@ -81,6 +81,8 @@ public class SettingsValues { public final boolean mSlidingKeyInputPreviewEnabled; public final int mKeyLongpressTimeout; public final boolean mEnableEmojiAltPhysicalKey; + public final boolean mShowAppIcon; + public final boolean mIsShowAppIconSettingInPreferences; public final boolean mCloudSyncEnabled; public final boolean mEnableMetricsLogging; public final boolean mShouldShowLxxSuggestionUi; @@ -168,6 +170,8 @@ public class SettingsValues { mKeyPreviewPopupDismissDelay = Settings.readKeyPreviewPopupDismissDelay(prefs, res); mEnableEmojiAltPhysicalKey = prefs.getBoolean( Settings.PREF_ENABLE_EMOJI_ALT_PHYSICAL_KEY, true); + mShowAppIcon = Settings.readShowSetupWizardIcon(prefs, context); + mIsShowAppIconSettingInPreferences = prefs.contains(Settings.PREF_SHOW_SETUP_WIZARD_ICON); mAutoCorrectionThreshold = readAutoCorrectionThreshold(res, autoCorrectionThresholdRawValue); mPlausibilityThreshold = Settings.readPlausibilityThreshold(res); |