forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.13' into master
Conflicts: src/plugins/qmakeprojectmanager/qmakeproject.cpp Change-Id: Ieb1c3e946f11d3c4fa1ee6b5afdf83cc532d8aed
This commit is contained in:
@@ -66,7 +66,10 @@ CapturedDataCommand::StateData collectStateData(ServerNodeInstance rootNodeInsta
|
||||
nodeData.sceneTransform = instance.sceneTransform();
|
||||
auto textProperty = instance.property("text");
|
||||
if (!textProperty.isNull() && instance.holdsGraphical())
|
||||
nodeData.properties.emplace_back(QString{"text"}, textProperty.toString());
|
||||
nodeData.properties.emplace_back(QString{"text"}, textProperty);
|
||||
auto colorProperty = instance.property("color");
|
||||
if (!colorProperty.isNull())
|
||||
nodeData.properties.emplace_back(QString{"color"}, colorProperty);
|
||||
|
||||
stateData.nodeData.push_back(std::move(nodeData));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user