debugger view not reset bug fix

This commit is contained in:
王劲鹏 2019-12-11 11:20:50 +08:00
parent aa02bd3e8e
commit 967f11e4ec

View File

@ -98,13 +98,13 @@ public class DoricContext {
this.initParams = new JSONBuilder()
.put("width", width)
.put("height", height)
.toJSONObject()
;
.toJSONObject();
callEntity(DoricConstant.DORIC_ENTITY_INIT, this.initParams, extra);
callEntity(DoricConstant.DORIC_ENTITY_CREATE);
}
public void reInit() {
this.mRootNode.setId("");
callEntity(DoricConstant.DORIC_ENTITY_INIT, this.initParams, extra);
callEntity(DoricConstant.DORIC_ENTITY_CREATE);
}