Merge pull request #2046 from 2e0byo/fix/mpd
This commit is contained in:
commit
823c13a8c0
|
@ -122,7 +122,10 @@ void waybar::modules::MPD::setLabel() {
|
|||
std::chrono::seconds elapsedTime, totalTime;
|
||||
|
||||
std::string stateIcon = "";
|
||||
if (stopped()) {
|
||||
bool no_song = song_.get() == nullptr;
|
||||
if (stopped() || no_song ) {
|
||||
if (no_song)
|
||||
spdlog::warn("Bug in mpd: no current song but state is not stopped.");
|
||||
format =
|
||||
config_["format-stopped"].isString() ? config_["format-stopped"].asString() : "stopped";
|
||||
label_.get_style_context()->add_class("stopped");
|
||||
|
|
Loading…
Reference in New Issue