abouttreesummaryrefslogcommitdiff
path: root/res/xml/settings.xml
diff options
context:
space:
mode:
authorJules Aguillon2025-03-27 23:25:32 +0100
committerGitHub2025-03-27 23:25:32 +0100
commit6541054cce964b7243d8779b54b168cda6741aff (patch)
tree5a065d34c23316ca25f1ad6605c688619af43b85 /res/xml/settings.xml
parent3971f6243cb5b5ca7f3120d5be8140f7646c9d7e (diff)
downloadunexpected-keyboard-6541054cce964b7243d8779b54b168cda6741aff.tar.gz
unexpected-keyboard-6541054cce964b7243d8779b54b168cda6741aff.zip
Remove symbols from the number row by default (#964)
The number row option is changed into a ListPreference and controls whether the number row contains symbols or not. Co-authored-by: Joey Schaff <j@jaoh.xyz>
Diffstat (limited to 'res/xml/settings.xml')
-rw-r--r--res/xml/settings.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/xml/settings.xml b/res/xml/settings.xml
index c6a0c51..d13a101 100644
--- a/res/xml/settings.xml
+++ b/res/xml/settings.xml
@@ -8,7 +8,7 @@
</PreferenceCategory>
<juloo.keyboard2.prefs.ExtraKeysPreference android:title="@string/pref_extra_keys_internal"/>
</PreferenceScreen>
- <CheckBoxPreference android:key="number_row" android:title="@string/pref_number_row_title" android:summary="@string/pref_number_row_summary" android:defaultValue="false"/>
+ <ListPreference android:key="number_row" android:title="@string/pref_number_row_title" android:summary="%s" android:defaultValue="no_number_row" android:entries="@array/pref_show_number_row_entries" android:entryValues="@array/pref_show_number_row_values"/>
<ListPreference android:key="show_numpad" android:title="@string/pref_show_numpad_title" android:summary="%s" android:defaultValue="1" android:entries="@array/pref_show_numpad_entries" android:entryValues="@array/pref_show_numpad_values"/>
<ListPreference android:key="numpad_layout" android:title="@string/pref_numpad_layout" android:summary="%s" android:defaultValue="high_first" android:entries="@array/pref_numpad_layout_entries" android:entryValues="@array/pref_numpad_layout_values"/>
</PreferenceCategory>