We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f216407 commit 859ea8fCopy full SHA for 859ea8f
ScratchCPPGui/ProjectPlayer.qml
@@ -20,6 +20,7 @@ ProjectScene {
20
21
id: root
22
clip: true
23
+ engine: loader.engine
24
onFileNameChanged: priv.loading = true;
25
26
QtObject {
@@ -109,4 +110,11 @@ ProjectScene {
109
110
Item { Layout.fillHeight: true }
111
}
112
113
+
114
+ MouseArea {
115
+ id: mouseArea
116
+ anchors.fill: parent
117
+ hoverEnabled: true
118
+ onPositionChanged: root.handleMouseMove(mouseX, mouseY)
119
+ }
120
0 commit comments