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:
parent
3c116e7550
commit
ddb0490592
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue