disable remove redundant popup keys by default

looks like people don't like it (#1052 and more)
This commit is contained in:
Helium314 2025-01-05 22:06:31 +01:00
parent 3989c1348a
commit 2ad45af856
3 changed files with 3 additions and 3 deletions

View file

@ -264,7 +264,7 @@ public class SettingsValues {
mAlphaAfterEmojiInEmojiView = prefs.getBoolean(Settings.PREF_ABC_AFTER_EMOJI, false);
mAlphaAfterClipHistoryEntry = prefs.getBoolean(Settings.PREF_ABC_AFTER_CLIP, false);
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, "");
}

View file

@ -292,7 +292,7 @@
<!-- Option to remove popup keys that already exist on the base keyboard -->
<string name="remove_redundant_popups">Remove redundant popups</string>
<!-- 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 -->
<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. -->

View file

@ -105,7 +105,7 @@
android:key="remove_redundant_popups"
android:title="@string/remove_redundant_popups"
android:summary="@string/remove_redundant_popups_summary"
android:defaultValue="true"
android:defaultValue="false"
android:persistent="true" />
</PreferenceCategory>