From 6932d4fb33b2d3643bf32862fa8d6ffb187330dc Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 4 Apr 2024 01:28:19 +0200 Subject: [PATCH] Fix bug introduced in latest Hyprland A recent change to hyprland, refactoring workspace storage has caused an issue with including `` directly, since it utilizes the `PHLWORKSPACE` type, which however isn't imported from this header file. Including `` manually fixes this issue, although it might be worth reporting this to hyprland, as this include probably should be present in this file. Introduced in Hyprland commit: --- include/globals.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/globals.hpp b/include/globals.hpp index b7b7ae1..7e02700 100644 --- a/include/globals.hpp +++ b/include/globals.hpp @@ -1,5 +1,6 @@ #pragma once +#include // needed for DwindleLayout.hpp #include #include #include