From be6378388894f2fa6bd01a2711a5b0c2053809ac Mon Sep 17 00:00:00 2001 From: David Redondo Date: Thu, 27 Apr 2023 12:28:02 +0200 Subject: [PATCH] Change default keyboard interactivity from exclusive to none To be in line with the default of the protocol --- src/interfaces/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/window.cpp b/src/interfaces/window.cpp index 461a8bf..e7b52d0 100644 --- a/src/interfaces/window.cpp +++ b/src/interfaces/window.cpp @@ -31,7 +31,7 @@ public: QString scope = QStringLiteral("window"); Window::Anchors anchors = {Window::AnchorTop | Window::AnchorBottom | Window::AnchorLeft | Window::AnchorRight}; int32_t exclusionZone = 0; - Window::KeyboardInteractivity keyboardInteractivity = Window::KeyboardInteractivityExclusive; + Window::KeyboardInteractivity keyboardInteractivity = Window::KeyboardInteractivityNone; Window::Layer layer = Window::LayerTop; QMargins margins; Window::ScreenConfiguration screenConfiguration = Window::ScreenFromQWindow;