diff options
| author | Jules Aguillon | 2023-01-15 19:11:08 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2023-01-15 19:11:08 +0100 |
| commit | a1999621178ad9fd1de713a9b9f485f110e4d899 (patch) | |
| tree | cbfb026aad88a8d939f5c2d4a88b7a51b0ce61fd /res/xml/settings.xml | |
| parent | 8a3c0566e7fc80ae3dcaad655222f890486a7255 (diff) | |
| download | unexpected-keyboard-a1999621178ad9fd1de713a9b9f485f110e4d899.tar.gz unexpected-keyboard-a1999621178ad9fd1de713a9b9f485f110e4d899.zip | |
Separate option for horizontal margin in landscape mode
A separate option is needed, the +25dp offset wasn't enough.
Diffstat (limited to 'res/xml/settings.xml')
| -rw-r--r-- | res/xml/settings.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/res/xml/settings.xml b/res/xml/settings.xml index 9ddebb9..5554b8f 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -60,7 +60,10 @@ <juloo.common.IntSlideBarPreference android:key="margin_bottom" android:title="@string/pref_margin_bottom_title" android:summary="%sdp" android:defaultValue="5" min="0" max="100"/> <juloo.common.IntSlideBarPreference android:key="keyboard_height" android:title="@string/pref_keyboard_height_title" android:summary="%s%%" android:defaultValue="35" min="10" max="50"/> <juloo.common.IntSlideBarPreference android:key="keyboard_height_landscape" android:title="@string/pref_keyboard_height_landscape_title" android:summary="%s%%" android:defaultValue="50" min="20" max="65"/> - <juloo.common.IntSlideBarPreference android:key="horizontal_margin" android:title="@string/pref_horizontal_margin_title" android:summary="%sdp" android:defaultValue="3" min="0" max="20"/> + <PreferenceScreen android:title="@string/pref_horizontal_margin_title"> + <juloo.common.IntSlideBarPreference android:key="horizontal_margin_portrait" android:title="@string/pref_portrait" android:summary="%sdp" android:defaultValue="3" min="0" max="30"/> + <juloo.common.IntSlideBarPreference android:key="horizontal_margin_landscape" android:title="@string/pref_landscape" android:summary="%sdp" android:defaultValue="28" min="0" max="200"/> + </PreferenceScreen> <juloo.common.SlideBarPreference android:key="character_size" android:title="@string/pref_character_size_title" android:summary="@string/pref_character_size_summary" android:defaultValue="1.0" min="0.8" max="1.2"/> <juloo.common.IntSlideBarPreference android:key="key_vertical_space" android:title="@string/pref_key_vertical_space" android:summary="%sdp" android:defaultValue="2" min="0" max="8"/> <juloo.common.IntSlideBarPreference android:key="key_horizontal_space" android:title="@string/pref_key_horizontal_space" android:summary="%sdp" android:defaultValue="2" min="0" max="8"/> |
