mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
Merge pull request #3039 from hrdl-github/fix-floating
Also consider floating nodes when checking for flags
This commit is contained in:
@ -261,6 +261,10 @@ bool Workspaces::hasFlag(const Json::Value &node, const std::string &flag) {
|
|||||||
[&](auto const &e) { return hasFlag(e, flag); })) {
|
[&](auto const &e) { return hasFlag(e, flag); })) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (std::any_of(node["floating_nodes"].begin(), node["floating_nodes"].end(),
|
||||||
|
[&](auto const &e) { return hasFlag(e, flag); })) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user