diff options
| author | Jules Aguillon | 2023-07-12 18:35:16 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-07-19 23:30:58 +0200 |
| commit | 6747669c2d64f4b01d5ce03729695689a03e20c7 (patch) | |
| tree | f4c7be21e2ca873a8668711609da27a1c1496e52 /res/xml | |
| parent | 1097b297d37b68e73b63c59c3d8169a795d00c1a (diff) | |
| download | unexpected-keyboard-6747669c2d64f4b01d5ce03729695689a03e20c7.tar.gz unexpected-keyboard-6747669c2d64f4b01d5ce03729695689a03e20c7.zip | |
Refactor: Use a PreferenceCategory for extra keys
This removes the need for a layout definition and adds a title before
the prefs.
It's a prerequise for the custom keys preference.
Diffstat (limited to 'res/xml')
| -rw-r--r-- | res/xml/settings.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/xml/settings.xml b/res/xml/settings.xml index f57d58a..0b85487 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -7,7 +7,7 @@ <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"/> <CheckBoxPreference android:key="number_row" android:title="@string/pref_number_row_title" android:summary="@string/pref_number_row_summary" android:defaultValue="false"/> <PreferenceScreen android:title="@string/pref_extra_keys_title"> - <juloo.keyboard2.ExtraKeysPreference/> + <juloo.keyboard2.ExtraKeysPreference android:title="@string/pref_extra_keys_internal"/> </PreferenceScreen> <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> |
