Skip to content

Commit

Permalink
Fix too large favorite icon in popup menu, by @mueller-ma (#186)
Browse files Browse the repository at this point in the history
The other icons are also 24dp large. Previously used 32dp.
  • Loading branch information
mueller-ma authored and gsantner committed Nov 9, 2019
1 parent 9b6e98b commit 9b856c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/src/main/res/drawable/ic_star_border_black_24dp.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="24.0"
android:viewportWidth="24.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#000000" android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/menu/memeitemadapter__popup_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
android:title="@string/show_title"/>
<item
android:id="@+id/memeitemadapter__popup_menu__action_fav"
android:icon="@drawable/ic_star_border_black_32dp"
android:icon="@drawable/ic_star_border_black_24dp"
android:title="@string/favourite"/>
<item
android:id="@+id/memeitemadapter__popup_menu__action_hide"
Expand Down

0 comments on commit 9b856c5

Please sign in to comment.