forked from qt-creator/qt-creator
QmlDesigner.NodeInstances: Fix color reset value
There is the color property with the r, g, b, a sub properties. Before this change we only saved the default of the sub properties. Change-Id: I11d4b0ed83cf8469836099a4f65942d7e8c8d8a6 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
committed by
Thomas Hartmann
parent
54c1e42e27
commit
1b23a4a410
@@ -808,7 +808,9 @@ QStringList propertyNameForWritableProperties(QObject *object, const QString &ba
|
|||||||
QQmlValueType *valueType = QQmlValueTypeFactory::valueType(metaProperty.userType());
|
QQmlValueType *valueType = QQmlValueTypeFactory::valueType(metaProperty.userType());
|
||||||
valueType->setValue(metaProperty.read(object));
|
valueType->setValue(metaProperty.read(object));
|
||||||
propertyNameList.append(propertyNameForWritableProperties(valueType, baseName + QString::fromUtf8(metaProperty.name()) + '.', inspectedObjects));
|
propertyNameList.append(propertyNameForWritableProperties(valueType, baseName + QString::fromUtf8(metaProperty.name()) + '.', inspectedObjects));
|
||||||
} else if (metaProperty.isReadable() && metaProperty.isWritable()) {
|
}
|
||||||
|
|
||||||
|
if (metaProperty.isReadable() && metaProperty.isWritable()) {
|
||||||
propertyNameList.append(baseName + QString::fromUtf8(metaProperty.name()));
|
propertyNameList.append(baseName + QString::fromUtf8(metaProperty.name()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user