summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml
diff options
context:
space:
mode:
authorH. Lehmann <ByteHamster@users.noreply.github.com>2018-10-07 14:06:21 +0200
committerGitHub <noreply@github.com>2018-10-07 14:06:21 +0200
commita59e5223afdbd4b69f2b3c99fb0994b01b82651c (patch)
tree90113bf3582ef1d38be78bcfd93c1927073f8dc8 /app/src/main/res/xml
parenta79c7c0cfc40eaa508344a7c0ebab8697e8c4791 (diff)
parent1094ec9a56d0bd14db074681c9c23110d7ed3917 (diff)
downloadAntennaPod-a59e5223afdbd4b69f2b3c99fb0994b01b82651c.zip
Merge pull request #2845 from sevenmaster/develop
Added icons in settings to keep style consistent
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r--app/src/main/res/xml/preferences.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml
index d3b72e17c..dfc2f4b1a 100644
--- a/app/src/main/res/xml/preferences.xml
+++ b/app/src/main/res/xml/preferences.xml
@@ -38,16 +38,21 @@
<PreferenceCategory android:title="@string/project_pref">
<Preference
android:key="prefFaq"
- android:title="@string/pref_faq"/>
+ android:title="@string/pref_faq"
+ android:icon="?attr/ic_question_answer" />
+
<Preference
android:key="prefKnownIssues"
- android:title="@string/pref_known_issues"/>
+ android:title="@string/pref_known_issues"
+ android:icon="?attr/ic_known_issues" />
<Preference
android:key="prefSendCrashReport"
android:title="@string/crash_report_title"
- android:summary="@string/crash_report_sum"/>
+ android:summary="@string/crash_report_sum"
+ android:icon="?attr/ic_bug" />
<Preference
android:key="prefAbout"
- android:title="@string/about_pref"/>
+ android:title="@string/about_pref"
+ android:icon="?attr/action_about" />
</PreferenceCategory>
</PreferenceScreen>