diff options
author | orionlee <orionlee@yahoo.com> | 2019-04-04 13:58:50 -0700 |
---|---|---|
committer | orionlee <orionlee@yahoo.com> | 2019-04-04 13:58:50 -0700 |
commit | 836334798db0d20dc75071fece732c3d2e81d0b6 (patch) | |
tree | c252d4f9a47a5b3c7f6090ebc1c33e2a7c520159 | |
parent | d1863090661896c870944d9f6e346f6158506e7c (diff) | |
download | AntennaPod-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)
-rw-r--r-- | app/src/main/res/menu/opml_selection_options.xml | 4 |
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> |