mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
Fix peristent class on buttons
Fixes: #3009 Signed-off-by: Jo De Boeck <deboeck.jo@gmail.com>
This commit is contained in:
@ -156,7 +156,7 @@ void Workspaces::onCmd(const struct Ipc::ipc_response &res) {
|
|||||||
if (output.asString() == bar_.output->name) {
|
if (output.asString() == bar_.output->name) {
|
||||||
Json::Value v;
|
Json::Value v;
|
||||||
v["name"] = p_w_name;
|
v["name"] = p_w_name;
|
||||||
v["output"] = bar_.output->name;
|
v["target_output"] = bar_.output->name;
|
||||||
v["num"] = convertWorkspaceNameToNum(p_w_name);
|
v["num"] = convertWorkspaceNameToNum(p_w_name);
|
||||||
workspaces_.emplace_back(std::move(v));
|
workspaces_.emplace_back(std::move(v));
|
||||||
break;
|
break;
|
||||||
@ -166,7 +166,7 @@ void Workspaces::onCmd(const struct Ipc::ipc_response &res) {
|
|||||||
// Adding to all outputs
|
// Adding to all outputs
|
||||||
Json::Value v;
|
Json::Value v;
|
||||||
v["name"] = p_w_name;
|
v["name"] = p_w_name;
|
||||||
v["output"] = "";
|
v["target_output"] = "";
|
||||||
v["num"] = convertWorkspaceNameToNum(p_w_name);
|
v["num"] = convertWorkspaceNameToNum(p_w_name);
|
||||||
workspaces_.emplace_back(std::move(v));
|
workspaces_.emplace_back(std::move(v));
|
||||||
}
|
}
|
||||||
@ -313,7 +313,7 @@ auto Workspaces::update() -> void {
|
|||||||
} else {
|
} else {
|
||||||
button.get_style_context()->remove_class("urgent");
|
button.get_style_context()->remove_class("urgent");
|
||||||
}
|
}
|
||||||
if (hasFlag((*it), "target_output")) {
|
if ((*it)["target_output"].isString()) {
|
||||||
button.get_style_context()->add_class("persistent");
|
button.get_style_context()->add_class("persistent");
|
||||||
} else {
|
} else {
|
||||||
button.get_style_context()->remove_class("persistent");
|
button.get_style_context()->remove_class("persistent");
|
||||||
|
Reference in New Issue
Block a user