aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/behaviors/wigglytext.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/animation/behaviors/wigglytext.qml')
-rw-r--r--examples/quick/animation/behaviors/wigglytext.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/quick/animation/behaviors/wigglytext.qml b/examples/quick/animation/behaviors/wigglytext.qml
index cc2e086b51..81d4a8aef9 100644
--- a/examples/quick/animation/behaviors/wigglytext.qml
+++ b/examples/quick/animation/behaviors/wigglytext.qml
@@ -48,6 +48,7 @@
**
****************************************************************************/
+import QtQml 2.0
import QtQuick 2.0
Rectangle {
@@ -58,7 +59,7 @@ Rectangle {
width: 320; height: 480; color: "#474747"; focus: true
- Keys.onPressed: {
+ Keys.onPressed: (event) => {
if (event.key == Qt.Key_Delete || event.key == Qt.Key_Backspace)
container.remove()
else if (event.text != "") {