diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-06-25 22:13:35 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-06-25 22:13:35 -0700 |
commit | 7e59089c7326484217c81f3f411e599e018297cf (patch) | |
tree | aa3733776cff56a528720a6eed90988c97f13700 /subsonic-android/res/menu | |
parent | 726a136e2244895d523d962eb7fc9a0166508a6e (diff) | |
download | dsub-7e59089c7326484217c81f3f411e599e018297cf.tar.gz dsub-7e59089c7326484217c81f3f411e599e018297cf.tar.bz2 dsub-7e59089c7326484217c81f3f411e599e018297cf.zip |
Add starring to library context menus
Diffstat (limited to 'subsonic-android/res/menu')
-rw-r--r-- | subsonic-android/res/menu/select_album_context_offline.xml | 4 | ||||
-rw-r--r-- | subsonic-android/res/menu/select_song_context_offline.xml | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/subsonic-android/res/menu/select_album_context_offline.xml b/subsonic-android/res/menu/select_album_context_offline.xml index af9272c2..70cf9da9 100644 --- a/subsonic-android/res/menu/select_album_context_offline.xml +++ b/subsonic-android/res/menu/select_album_context_offline.xml @@ -18,4 +18,8 @@ <item android:id="@+id/album_menu_delete" android:title="@string/common.delete"/> + + <item + android:id="@+id/album_menu_star" + android:title="@string/common.star"/> </menu>
\ No newline at end of file diff --git a/subsonic-android/res/menu/select_song_context_offline.xml b/subsonic-android/res/menu/select_song_context_offline.xml index 8813d4a8..d19eaa70 100644 --- a/subsonic-android/res/menu/select_song_context_offline.xml +++ b/subsonic-android/res/menu/select_song_context_offline.xml @@ -24,4 +24,8 @@ <item android:id="@+id/song_menu_delete" android:title="@string/common.delete"/> + + <item + android:id="@+id/song_menu_star" + android:title="@string/common.star"/> </menu> |