fix 'visible' class for special workspaces
This commit is contained in:
parent
240b49f9d2
commit
a2925fa5da
|
@ -187,7 +187,7 @@ void Workspaces::doUpdate() {
|
||||||
auto sws = monitor["specialWorkspace"];
|
auto sws = monitor["specialWorkspace"];
|
||||||
auto name = sws["name"].asString();
|
auto name = sws["name"].asString();
|
||||||
if (sws.isObject() && (sws["name"].isString()) && !name.empty()) {
|
if (sws.isObject() && (sws["name"].isString()) && !name.empty()) {
|
||||||
visibleWorkspaces.push_back(name.starts_with("special:") ? name : name.substr(8));
|
visibleWorkspaces.push_back(!name.starts_with("special:") ? name : name.substr(8));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue