Unverified Commit 6065ff85 authored by Sawyer Blatz's avatar Sawyer Blatz Committed by GitHub
Browse files

No issue: Fixes indentations on several settings fragments (#9442)

parent 5e9d5dd5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <SwitchPreference
        app:iconSpaceReserved="false"
        android:defaultValue="false"
        android:key="@string/pref_key_delete_browsing_data_on_quit"
        android:summary="@string/preference_summary_delete_browsing_data_on_quit_2"
+4 −0
Original line number Diff line number Diff line
@@ -5,19 +5,23 @@
<androidx.preference.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_save_logins_settings"
        android:summary="@string/preferences_passwords_save_logins_ask_to_save"
        android:title="@string/preferences_passwords_save_logins" />
    <SwitchPreference
        app:iconSpaceReserved="false"
        app:isPreferenceVisible="false"
        android:defaultValue="true"
        android:key="@string/pref_key_autofill_logins"
        android:title="@string/preferences_passwords_autofill" />
    <androidx.preference.Preference
        app:iconSpaceReserved="false"
        android:key="@string/pref_key_password_sync_logins"
        android:summary="@string/preferences_passwords_sync_logins_off"
        android:title="@string/preferences_passwords_sync_logins" />
    <androidx.preference.Preference
        app:iconSpaceReserved="false"
        android:key="@string/pref_key_saved_logins"
        android:title="@string/preferences_passwords_saved_logins" />
</androidx.preference.PreferenceScreen>
+6 −3
Original line number Diff line number Diff line
@@ -2,12 +2,15 @@
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - 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
        android:key="@string/pref_key_add_private_browsing_shortcut"
        android:title="@string/preferences_add_private_browsing_shortcut"/>
        android:title="@string/preferences_add_private_browsing_shortcut"
        app:iconSpaceReserved="false" />
    <SwitchPreference
        android:defaultValue="false"
        android:key="@string/pref_key_open_links_in_a_private_tab"
        android:title="@string/preferences_open_links_in_a_private_tab" />
        android:title="@string/preferences_open_links_in_a_private_tab"
        app:iconSpaceReserved="false" />
</PreferenceScreen>