diff --git a/AUTHORS b/AUTHORS index ba27e7df..2c11a083 100644 --- a/AUTHORS +++ b/AUTHORS @@ -24,4 +24,5 @@ Raghavendra D Prabhu Sebastian Peters Trygve Aaberge Wieland Hoffmann +Wojciech Siewierski Yannick LM diff --git a/src/actions.cpp b/src/actions.cpp index 9f89ab13..25bd5c7d 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -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;