1
0
Fork 0
forked from len0rd/rockbox

dont let the database create a new playlist when party mode is on. (fixes FS#8292)

its not consistant with the filebrowser though, i.e you have to open the context menu for the item to add it to the playlist (whereas in the filebrowser it automatically gets queued if its selected)
still better than ignoreing the setting though


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18316 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-08-19 12:05:01 +00:00
parent ddc2176b4d
commit a3b9bfc763

View file

@ -1489,6 +1489,10 @@ int tagtree_enter(struct tree_context* c)
case allsubentries:
if (newextra == playtrack)
{
if (global_settings.party_mode && audio_status()) {
splash(HZ, ID2P(LANG_PARTY_MODE));
break;
}
c->dirlevel--;
/* about to create a new current playlist...
allow user to cancel the operation */