QmlDesigner: Fix rotation block property name in puppet

Property name was changed on creator side when aux property handling
was refactored, but corresponding change was not done in puppet.

Change-Id: Iba21661908d6c46d7f586c18f0d34fcece597c9a
Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
This commit is contained in:
Miikka Heikkinen
2023-01-09 14:13:17 +02:00
parent f673d3d0b0
commit 1c48089979

View File

@@ -345,7 +345,7 @@ void Qt5InformationNodeInstanceServer::updateRotationBlocks(
if (helper) {
QSet<QQuick3DNode *> blockedNodes;
QSet<QQuick3DNode *> unblockedNodes;
const PropertyName rotBlocked = "rotBlocked";
const PropertyName rotBlocked = "rotBlock";
for (const auto &container : valueChanges) {
if (container.name() == rotBlocked
&& container.auxiliaryDataType() == AuxiliaryDataType::NodeInstanceAuxiliary) {