diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-25 18:13:07 -0600 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-26 00:49:01 -0600 |
commit | ade8f18a9550b340904cc608029c0fa4fe7186c0 (patch) | |
tree | 6e94a5d6d040aa7c77081e94e511d34a3ccc70db /ui/src/main/res/xml/preferences.xml | |
parent | 46e2e29ead6fcd2b2ced46b965bc5e74484dead6 (diff) |
xml: cleanup
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui/src/main/res/xml/preferences.xml')
-rw-r--r-- | ui/src/main/res/xml/preferences.xml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/ui/src/main/res/xml/preferences.xml b/ui/src/main/res/xml/preferences.xml index 4c81c7c9..b5929778 100644 --- a/ui/src/main/res/xml/preferences.xml +++ b/ui/src/main/res/xml/preferences.xml @@ -1,17 +1,20 @@ <?xml version="1.0" encoding="utf-8"?> -<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:key="settings"> - <com.wireguard.android.preference.VersionPreference android:icon="@mipmap/ic_launcher" android:key="version" /> +<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" + android:key="settings"> + <com.wireguard.android.preference.VersionPreference + android:icon="@mipmap/ic_launcher" + android:key="version" /> <CheckBoxPreference android:defaultValue="false" android:key="restore_on_boot" - android:summaryOn="@string/restore_on_boot_summary_on" android:summaryOff="@string/restore_on_boot_summary_off" + android:summaryOn="@string/restore_on_boot_summary_on" android:title="@string/restore_on_boot_title" /> <com.wireguard.android.preference.ZipExporterPreference android:key="zip_exporter" /> <Preference android:key="log_viewer" - android:title="@string/log_viewer_title" - android:summary="@string/log_viewer_pref_summary" /> + android:summary="@string/log_viewer_pref_summary" + android:title="@string/log_viewer_title" /> <CheckBoxPreference android:defaultValue="false" android:key="dark_theme" |