summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qchannelmapping.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/frontend/qchannelmapping.cpp')
-rw-r--r--src/animation/frontend/qchannelmapping.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/animation/frontend/qchannelmapping.cpp b/src/animation/frontend/qchannelmapping.cpp
index 0dbe68c8c..8f6ebe9ab 100644
--- a/src/animation/frontend/qchannelmapping.cpp
+++ b/src/animation/frontend/qchannelmapping.cpp
@@ -257,7 +257,12 @@ void QChannelMapping::setProperty(const QString &property)
return;
d->m_property = property;
+
+ // The backend uses propertyName instead of property
+ const bool blocked = blockNotifications(true);
emit propertyChanged(property);
+ blockNotifications(blocked);
+
d->updatePropertyNameTypeAndComponentCount();
}
@@ -268,7 +273,6 @@ Qt3DCore::QNodeCreatedChangeBasePtr QChannelMapping::createNodeCreationChange()
Q_D(const QChannelMapping);
data.channelName = d->m_channelName;
data.targetId = Qt3DCore::qIdForNode(d->m_target);
- data.property = d->m_property;
data.type = d->m_type;
data.componentCount = d->m_componentCount;
data.propertyName = d->m_propertyName;