mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
mpris: fix css class application
apply styles to label rather than event_box (fixes play/pause state and per-player selectors)
This commit is contained in:
parent
3d980f92a3
commit
cb82326b22
@ -575,20 +575,20 @@ auto Mpris::update() -> void {
|
||||
spdlog::debug("mpris[{}]: running update", info.name);
|
||||
|
||||
// set css class for player status
|
||||
if (!lastStatus.empty() && event_box_.get_style_context()->has_class(lastStatus)) {
|
||||
event_box_.get_style_context()->remove_class(lastStatus);
|
||||
if (!lastStatus.empty() && label_.get_style_context()->has_class(lastStatus)) {
|
||||
label_.get_style_context()->remove_class(lastStatus);
|
||||
}
|
||||
if (!event_box_.get_style_context()->has_class(info.status_string)) {
|
||||
event_box_.get_style_context()->add_class(info.status_string);
|
||||
if (!label_.get_style_context()->has_class(info.status_string)) {
|
||||
label_.get_style_context()->add_class(info.status_string);
|
||||
}
|
||||
lastStatus = info.status_string;
|
||||
|
||||
// set css class for player name
|
||||
if (!lastPlayer.empty() && event_box_.get_style_context()->has_class(lastPlayer)) {
|
||||
event_box_.get_style_context()->remove_class(lastPlayer);
|
||||
if (!lastPlayer.empty() && label_.get_style_context()->has_class(lastPlayer)) {
|
||||
label_.get_style_context()->remove_class(lastPlayer);
|
||||
}
|
||||
if (!event_box_.get_style_context()->has_class(info.name)) {
|
||||
event_box_.get_style_context()->add_class(info.name);
|
||||
if (!label_.get_style_context()->has_class(info.name)) {
|
||||
label_.get_style_context()->add_class(info.name);
|
||||
}
|
||||
lastPlayer = info.name;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user