actions: support adding random album_artists

This commit is contained in:
Wojciech Siewierski
2014-12-11 20:50:45 +01:00
committed by Andrzej Rybczak
parent 1a1105793d
commit 7e87650715
2 changed files with 3 additions and 1 deletions

View File

@@ -1973,9 +1973,10 @@ void AddRandomItems::run()
Statusbar::put() << "Add random? "
<< "[" << NC::Format::Bold << 's' << NC::Format::NoBold << "ongs"
<< "/" << NC::Format::Bold << 'a' << NC::Format::NoBold << "rtists"
<< "/" << "album" << NC::Format::Bold << 'A' << NC::Format::NoBold << "rtists"
<< "/" << "al" << NC::Format::Bold << 'b' << NC::Format::NoBold << "ums"
<< "] ";
rnd_type = Statusbar::Helpers::promptReturnOneOf({"s", "a", "b"})[0];
rnd_type = Statusbar::Helpers::promptReturnOneOf({"s", "a", "A", "b"})[0];
}
mpd_tag_type tag_type = MPD_TAG_ARTIST;