actions: support adding random album_artists

master
Wojciech Siewierski 11 years ago committed by Andrzej Rybczak
parent 1a1105793d
commit 7e87650715
  1. 1
      AUTHORS
  2. 3
      src/actions.cpp

@ -24,4 +24,5 @@ Raghavendra D Prabhu <rprabhu@wnohang.net>
Sebastian Peters <koelnconcert@googlemail.com>
Trygve Aaberge <trygveaa@gmail.com>
Wieland Hoffmann <themineo@gmail.com>
Wojciech Siewierski <wojciech.siewierski@onet.pl>
Yannick LM <yannicklm1337@gmail.com>

@ -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;

Loading…
Cancel
Save