Change default keyboard interactivity from exclusive to none

To be in line with the default of the protocol
This commit is contained in:
David Redondo 2023-04-27 12:28:02 +02:00
parent 87753746b9
commit be63783888
1 changed files with 1 additions and 1 deletions

View File

@ -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;