summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authororionlee <orionlee@yahoo.com>2019-04-04 13:58:50 -0700
committerorionlee <orionlee@yahoo.com>2019-04-04 13:58:50 -0700
commit836334798db0d20dc75071fece732c3d2e81d0b6 (patch)
treec252d4f9a47a5b3c7f6090ebc1c33e2a7c520159 /app/src
parentd1863090661896c870944d9f6e346f6158506e7c (diff)
downloadAntennaPod-836334798db0d20dc75071fece732c3d2e81d0b6.zip
refactor - UI - make OPML import screen use the new select all / none icons as well (so that only single set of icons are needed)
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/res/menu/opml_selection_options.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/menu/opml_selection_options.xml b/app/src/main/res/menu/opml_selection_options.xml
index 26d2a0519..8b3310dc2 100644
--- a/app/src/main/res/menu/opml_selection_options.xml
+++ b/app/src/main/res/menu/opml_selection_options.xml
@@ -4,14 +4,14 @@
<item
android:id="@id/select_all_item"
- android:icon="?attr/ic_check_box_outline"
+ android:icon="?attr/ic_select_all"
android:title="@string/select_all_label"
custom:showAsAction="ifRoom">
</item>
<item
android:id="@id/deselect_all_item"
- android:icon="?attr/ic_check_box"
+ android:icon="?attr/ic_select_none"
android:title="@string/deselect_all_label"
custom:showAsAction="ifRoom">
</item>