aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/cursornavigationattached.cpp
diff options
context:
space:
mode:
authorAntti Hölttä <AHoelttae@luxoft.com>2019-02-19 10:32:26 +0100
committerAntti Hölttä <AHoelttae@luxoft.com>2019-03-18 16:42:14 +0100
commit84ed792e46f7dde0be7cecb162d3c660d8b208d5 (patch)
tree4cbcd2fcf4982c6a03a18909098b31607edf2db4 /plugin/cursornavigationattached.cpp
parent90bac9f6ea2aea664e934116074c4db4887416f8 (diff)
Bugfix: acceptsCursor should be set to false by default.
Otherwise items that are not supposed to get the cursor may receive it.
Diffstat (limited to 'plugin/cursornavigationattached.cpp')
-rw-r--r--plugin/cursornavigationattached.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/cursornavigationattached.cpp b/plugin/cursornavigationattached.cpp
index 39a7888..a897327 100644
--- a/plugin/cursornavigationattached.cpp
+++ b/plugin/cursornavigationattached.cpp
@@ -8,7 +8,7 @@ CursorNavigationAttached::CursorNavigationAttached(QQuickItem *parent)
:QObject(parent),
m_cursorNavigation(nullptr),
m_parentNavigable(nullptr),
-m_acceptsCursor(true),
+m_acceptsCursor(false),
m_hasCursor(false),
m_trapsCursor(false),
m_escapeTarget(nullptr)