diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-07-21 12:00:17 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-07-21 12:00:17 -0700 |
commit | b063f48d564e26a061caf82ce76e44439ce59160 (patch) | |
tree | 12f70221a755083d6bc7aa7ac396bb003a618490 | |
parent | bad47b743634da408ffe5889e480cbb8283cb896 (diff) | |
download | dsub-b063f48d564e26a061caf82ce76e44439ce59160.tar.gz dsub-b063f48d564e26a061caf82ce76e44439ce59160.tar.bz2 dsub-b063f48d564e26a061caf82ce76e44439ce59160.zip |
Fix star always showing
-rw-r--r-- | subsonic-android/res/layout/song_list_item.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subsonic-android/res/layout/song_list_item.xml b/subsonic-android/res/layout/song_list_item.xml index e1badafb..90060894 100644 --- a/subsonic-android/res/layout/song_list_item.xml +++ b/subsonic-android/res/layout/song_list_item.xml @@ -44,7 +44,8 @@ android:layout_gravity="right|center_vertical"
android:src="@drawable/ic_stat_star"
android:background="@null"
- android:focusable="false"/>
+ android:focusable="false"
+ android:visibility="gone"/>
<TextView
android:id="@+id/song_status"
|