Change default keyboard interactivity to OnDemand

OnDemand is a better default as it still ensures that the window will
receive keyboard input by default, but it's less aggressive.
This commit is contained in:
Vlad Zahorodnii 2023-11-28 09:56:13 +02:00
parent 3c116e7550
commit ddb0490592
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::KeyboardInteractivityOnDemand;
Window::Layer layer = Window::LayerTop;
QMargins margins;
Window::ScreenConfiguration screenConfiguration = Window::ScreenFromQWindow;