We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50026f0 commit c3ed3b0Copy full SHA for c3ed3b0
src/wayland/hyprland/ipc/connection.cpp
@@ -333,7 +333,8 @@ void HyprlandIpc::onEvent(HyprlandIpcEvent* event) {
333
auto* monitor = this->findMonitorByName(name, true);
334
this->setFocusedMonitor(monitor);
335
monitor->setActiveWorkspace(workspace);
336
- qCDebug(logHyprlandIpc) << "Monitor" << name << "focused with workspace" << workspace->id();
+ qCDebug(logHyprlandIpc) << "Monitor" << name << "focused with workspace"
337
+ << (workspace ? workspace->id() : -1);
338
} else if (event->name == "workspacev2") {
339
auto args = event->parseView(2);
340
auto id = args.at(0).toInt();
0 commit comments