fix click transfer & slider child blend

This commit is contained in:
王劲鹏
2021-05-31 20:10:42 +08:00
committed by osborn
parent 94045f11bf
commit 3597c5972a
2 changed files with 4 additions and 5 deletions

View File

@@ -50,7 +50,7 @@ void DoricSliderNode::blend(QQuickItem *view, QString name, QJsonValue prop) {
} else if (name == "loop") {
this->loop = prop.toBool();
} else {
DoricViewNode::blend(view, name, prop);
DoricSuperNode::blend(view, name, prop);
}
}
@@ -81,8 +81,5 @@ void DoricSliderNode::afterBlended(QJsonValue prop) {
newNode->blend(model["props"]);
}
}
int size = childNodes.size();
qDebug() << size;
}
}