aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickitem_p.h
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@viroteck.net>2016-07-07 20:57:33 +0200
committerRobin Burchell <robin.burchell@viroteck.net>2016-07-07 20:58:51 +0000
commit76150dc6b90d8e67ff6a810d8c62fbb59e18e5fc (patch)
tree72d11075ed3ffd3d5f63d2f54190cb8b00b50f56 /src/quick/items/qquickitem_p.h
parent733b20af44d4400faa61e02dfb2feae8badaf003 (diff)
Fix incorrect determination of cursor state in some cases
Porting the same fix applied to similar code (but for hover) from Shawn in f7e462ba153ff33a02cad903efc8662f1eacd225. We match the rename to make this easier to understand. Change-Id: I660ae77b1d0e3b735b8c39002109e133d2297f06 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/quick/items/qquickitem_p.h')
-rw-r--r--src/quick/items/qquickitem_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/qquickitem_p.h b/src/quick/items/qquickitem_p.h
index 8328dd513b..de4dfc9cd7 100644
--- a/src/quick/items/qquickitem_p.h
+++ b/src/quick/items/qquickitem_p.h
@@ -426,7 +426,7 @@ public:
bool isAccessible:1;
bool culled:1;
bool hasCursor:1;
- bool hasCursorInChild:1;
+ bool subtreeCursorEnabled:1;
// Bit 32
bool subtreeHoverEnabled:1;
bool activeFocusOnTab:1;