diff options
Diffstat (limited to 'src/layout/DwindleLayout.hpp')
-rw-r--r-- | src/layout/DwindleLayout.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/DwindleLayout.hpp b/src/layout/DwindleLayout.hpp index 953ba3a2..dffc34f7 100644 --- a/src/layout/DwindleLayout.hpp +++ b/src/layout/DwindleLayout.hpp @@ -4,7 +4,7 @@ #include "../desktop/DesktopTypes.hpp" #include <list> -#include <deque> +#include <vector> #include <array> #include <optional> #include <format> @@ -39,7 +39,7 @@ struct SDwindleNodeData { } void recalcSizePosRecursive(bool force = false, bool horizontalOverride = false, bool verticalOverride = false); - void getAllChildrenRecursive(std::deque<SDwindleNodeData*>*); + void getAllChildrenRecursive(std::vector<SDwindleNodeData*>*); CHyprDwindleLayout* layout = nullptr; }; |