diff --git a/src/wayland/hyprland/ipc/connection.cpp b/src/wayland/hyprland/ipc/connection.cpp index cb2bf203..c33ebd60 100644 --- a/src/wayland/hyprland/ipc/connection.cpp +++ b/src/wayland/hyprland/ipc/connection.cpp @@ -173,6 +173,10 @@ QVector HyprlandIpc::parseEventArgs(QByteArrayView event, quint1 args.push_back(event); } + while (args.length() < count) { + args.push_back(QByteArrayView()); + } + return args; }