修改引用Element的Layer的styles类型为ALL | #32
parent
4471bb3f79
commit
a0d45085dd
|
@ -82,9 +82,16 @@ LeafLayerWrapper::LeafLayerWrapper(QJsonObject json, ElementManager* elementMana
|
|||
: LayerWrapper(json, parent, elementManager),
|
||||
wrappedElement(elementManager->getElementById(json.value("element").toInt()))
|
||||
{
|
||||
if (typeid(*wrappedElement) == typeid(GroupElement))
|
||||
{
|
||||
styles = new LayerStyleContainer(ElementType::TYPE_ALL);
|
||||
}
|
||||
else
|
||||
{
|
||||
styles = new LayerStyleContainer(LayerStyleContainer::fromJson(
|
||||
wrappedElement->isClosed() ? ElementType::TYPE_CLOSED : ElementType::TYPE_UNCLOSED,
|
||||
json.value("styles").toArray()));
|
||||
}
|
||||
qDebug() << json.value("name").toString() << " " << this;
|
||||
if(wrappedElement != nullptr)
|
||||
wrappedElement->referencedCount++;
|
||||
|
|
Loading…
Reference in New Issue