aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/material/impl/CursorDelegate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/material/impl/CursorDelegate.qml')
-rw-r--r--src/quickcontrols/material/impl/CursorDelegate.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickcontrols/material/impl/CursorDelegate.qml b/src/quickcontrols/material/impl/CursorDelegate.qml
index 811aa89e36..d1ef157f87 100644
--- a/src/quickcontrols/material/impl/CursorDelegate.qml
+++ b/src/quickcontrols/material/impl/CursorDelegate.qml
@@ -24,7 +24,7 @@ Rectangle {
id: timer
running: cursor.parent.activeFocus && !cursor.parent.readOnly && interval != 0
repeat: true
- interval: Qt.styleHints.cursorFlashTime / 2
+ interval: Application.styleHints.cursorFlashTime / 2
onTriggered: cursor.opacity = !cursor.opacity ? 1 : 0
// force the cursor visible when gaining focus
onRunningChanged: cursor.opacity = 1