File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -150,8 +150,10 @@ void Window::queryActiveWorkspace() {
150
150
[&](Json::Value window) {
151
151
return window[" workspace" ][" id" ] == workspace_.id && window[" mapped" ].asBool ();
152
152
});
153
- swallowing_ = std::any_of (workspace_windows.begin (), workspace_windows.end (),
154
- [&](Json::Value window) { return !window[" swallowing" ].isNull () && window[" swallowing" ].asString () != " 0x0" ; });
153
+ swallowing_ =
154
+ std::any_of (workspace_windows.begin (), workspace_windows.end (), [&](Json::Value window) {
155
+ return !window[" swallowing" ].isNull () && window[" swallowing" ].asString () != " 0x0" ;
156
+ });
155
157
std::vector<Json::Value> visible_windows;
156
158
std::copy_if (workspace_windows.begin (), workspace_windows.end (),
157
159
std::back_inserter (visible_windows),
You can’t perform that action at this time.
0 commit comments