We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca17bdb + 736309e commit 2c927deCopy full SHA for 2c927de
src/modules/hyprland/workspaces.cpp
@@ -235,7 +235,10 @@ void Workspaces::doUpdate() {
235
auto wName = wNameRaw.starts_with("special:") ? wNameRaw.substr(8) : wNameRaw;
236
return wName == workspace->name();
237
});
238
- workspace->setOutput((*updated_workspace)["monitor"].asString());
+
239
+ if (updated_workspace != updated_workspaces.end()) {
240
+ workspace->setOutput((*updated_workspace)["monitor"].asString());
241
+ }
242
243
workspace->update(m_format, workspaceIcon);
244
}
0 commit comments