1
0
Fork 0

For #9880 - fixed sync settings style

master
Sören Hentzschel 2020-04-27 21:57:38 +02:00 committed by Mihai Adrian
parent c86209ff98
commit f0e659bfdb
2 changed files with 9 additions and 2 deletions

View File

@ -13,7 +13,7 @@
android:gravity="center_vertical"
android:paddingStart="16dp"
android:layout_marginBottom="8dp"
android:paddingEnd="?android:attr/scrollbarSize">
android:paddingEnd="16dp">
<LinearLayout
android:id="@android:id/widget_frame"

View File

@ -2,17 +2,21 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.preference.Preference
app:iconSpaceReserved="false"
android:key="@string/pref_key_sync_now"
android:title="@string/preferences_sync_now" />
<androidx.preference.EditTextPreference
app:iconSpaceReserved="false"
android:key="@string/pref_key_sync_device_name"
android:title="@string/preferences_sync_device_name" />
<androidx.preference.Preference
app:iconSpaceReserved="false"
android:key="@string/pref_key_sign_out"
android:title="@string/preferences_sign_out" />
@ -24,16 +28,19 @@
<androidx.preference.CheckBoxPreference
android:defaultValue="true"
android:key="@string/pref_key_sync_bookmarks"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_bookmarks" />
<androidx.preference.CheckBoxPreference
android:defaultValue="true"
android:key="@string/pref_key_sync_history"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_history" />
<androidx.preference.CheckBoxPreference
android:defaultValue="true"
android:key="@string/pref_key_sync_logins"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_logins" />
</androidx.preference.PreferenceCategory>
</PreferenceScreen>