mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-14 14:02:44 +00:00
disable remove redundant popup keys by default
looks like people don't like it (#1052 and more)
This commit is contained in:
parent
3989c1348a
commit
2ad45af856
3 changed files with 3 additions and 3 deletions
|
@ -264,7 +264,7 @@ public class SettingsValues {
|
||||||
mAlphaAfterEmojiInEmojiView = prefs.getBoolean(Settings.PREF_ABC_AFTER_EMOJI, false);
|
mAlphaAfterEmojiInEmojiView = prefs.getBoolean(Settings.PREF_ABC_AFTER_EMOJI, false);
|
||||||
mAlphaAfterClipHistoryEntry = prefs.getBoolean(Settings.PREF_ABC_AFTER_CLIP, false);
|
mAlphaAfterClipHistoryEntry = prefs.getBoolean(Settings.PREF_ABC_AFTER_CLIP, false);
|
||||||
mAlphaAfterSymbolAndSpace = prefs.getBoolean(Settings.PREF_ABC_AFTER_SYMBOL_SPACE, true);
|
mAlphaAfterSymbolAndSpace = prefs.getBoolean(Settings.PREF_ABC_AFTER_SYMBOL_SPACE, true);
|
||||||
mRemoveRedundantPopups = prefs.getBoolean(Settings.PREF_REMOVE_REDUNDANT_POPUPS, true);
|
mRemoveRedundantPopups = prefs.getBoolean(Settings.PREF_REMOVE_REDUNDANT_POPUPS, false);
|
||||||
mSpaceBarText = prefs.getString(Settings.PREF_SPACE_BAR_TEXT, "");
|
mSpaceBarText = prefs.getString(Settings.PREF_SPACE_BAR_TEXT, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -292,7 +292,7 @@
|
||||||
<!-- Option to remove popup keys that already exist on the base keyboard -->
|
<!-- Option to remove popup keys that already exist on the base keyboard -->
|
||||||
<string name="remove_redundant_popups">Remove redundant popups</string>
|
<string name="remove_redundant_popups">Remove redundant popups</string>
|
||||||
<!-- Description of the remove_redundant_popups setting -->
|
<!-- Description of the remove_redundant_popups setting -->
|
||||||
<string name="remove_redundant_popups_summary">Suppress popup keys that are present on the base layout</string>
|
<string name="remove_redundant_popups_summary">Suppress popup keys that are already present on the base layout</string>
|
||||||
<!-- Title of the setting enabling long press on space key to change IME -->
|
<!-- Title of the setting enabling long press on space key to change IME -->
|
||||||
<string name="prefs_long_press_keyboard_to_change_lang">Change input method with space key</string>
|
<string name="prefs_long_press_keyboard_to_change_lang">Change input method with space key</string>
|
||||||
<!-- Description of the settings to change IME indicating long press triggers change. -->
|
<!-- Description of the settings to change IME indicating long press triggers change. -->
|
||||||
|
|
|
@ -105,7 +105,7 @@
|
||||||
android:key="remove_redundant_popups"
|
android:key="remove_redundant_popups"
|
||||||
android:title="@string/remove_redundant_popups"
|
android:title="@string/remove_redundant_popups"
|
||||||
android:summary="@string/remove_redundant_popups_summary"
|
android:summary="@string/remove_redundant_popups_summary"
|
||||||
android:defaultValue="true"
|
android:defaultValue="false"
|
||||||
android:persistent="true" />
|
android:persistent="true" />
|
||||||
|
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue