diff options
author | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-23 05:17:41 (GMT) |
---|---|---|
committer | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-23 05:17:41 (GMT) |
commit | 3083b436bd3adc6280d3b7ebcb75358454cb9623 (patch) | |
tree | 0eb451db7cc183c126e19617faa26b12f8af3c51 /examples/declarative/effects/effects.qml | |
parent | 055fa76e7575be55899127de2d254e0f0e90a1db (diff) | |
parent | 39d728dd76efa10ca297b76ed08a5cd1c0235b3f (diff) | |
download | Qt-3083b436bd3adc6280d3b7ebcb75358454cb9623.zip Qt-3083b436bd3adc6280d3b7ebcb75358454cb9623.tar.gz Qt-3083b436bd3adc6280d3b7ebcb75358454cb9623.tar.bz2 |
Merge remote branch 'origin/master' into bearermanagement/staging
Diffstat (limited to 'examples/declarative/effects/effects.qml')
-rw-r--r-- | examples/declarative/effects/effects.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/effects/effects.qml b/examples/declarative/effects/effects.qml index 51658ff..0674433 100644 --- a/examples/declarative/effects/effects.qml +++ b/examples/declarative/effects/effects.qml @@ -20,7 +20,7 @@ Rectangle { } } - MouseRegion { anchors.fill: parent; onClicked: blurEffect.running = !blurEffect.running } + MouseArea { anchors.fill: parent; onClicked: blurEffect.running = !blurEffect.running } } Text { text: "Blur"; anchors.top: blur.bottom; anchors.horizontalCenter: blur.horizontalCenter } @@ -36,7 +36,7 @@ Rectangle { offset.y: NumberAnimation { id: dropShadowEffect; from: 0; to: 10; duration: 1000; running: false; repeat: true; } } - MouseRegion { anchors.fill: parent; onClicked: dropShadowEffect.running = !dropShadowEffect.running } + MouseArea { anchors.fill: parent; onClicked: dropShadowEffect.running = !dropShadowEffect.running } } Image { |