aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-03-31 17:21:12 +0200
committerdec05eba <dec05eba@protonmail.com>2022-03-31 17:21:12 +0200
commit4e43f6ea03c1fe4c0cc92285ba5869e6b1815881 (patch)
tree151c88386f944f76fa552a8f78e15b9cf32394a9
parent14e64e64c7da7535e62c275980669d9cf56b7a6d (diff)
Add override redirect option to window create
m---------depends/mgl0
-rw-r--r--include/mglpp/window/Window.hpp1
2 files changed, 1 insertions, 0 deletions
diff --git a/depends/mgl b/depends/mgl
-Subproject 956c86fe4728e6e5239202f1402fd65260ece7c
+Subproject d89e3d1a1cf432210361d1b0aafad8308d8ac96
diff --git a/include/mglpp/window/Window.hpp b/include/mglpp/window/Window.hpp
index 93918f4..bdf9c05 100644
--- a/include/mglpp/window/Window.hpp
+++ b/include/mglpp/window/Window.hpp
@@ -36,6 +36,7 @@ namespace mgl {
mgl::vec2i max_size; /* (0, 0) = no limit */
WindowHandle parent_window = 0; /* 0 = root window */
bool hidden = false;
+ bool override_redirect = false;
};
Window();