summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxkeyactions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/fx/qfxkeyactions.cpp')
-rw-r--r--src/declarative/fx/qfxkeyactions.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/fx/qfxkeyactions.cpp b/src/declarative/fx/qfxkeyactions.cpp
index 2c662a6..5de1f0b 100644
--- a/src/declarative/fx/qfxkeyactions.cpp
+++ b/src/declarative/fx/qfxkeyactions.cpp
@@ -900,6 +900,7 @@ void QFxKeyActions::keyPressEvent(QKeyEvent *event)
Qt::Key key = (Qt::Key)event->key();
if (d->enabled && d->key(key)) {
QmlExpression b(qmlContext(this), d->action(key), this);
+ b.setTrackChange(false);
b.value();
event->accept();
} else {