浏览代码

work around assert

/work_around_tal
xingweizhu 4 年前
当前提交
d4773919
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
      com.unity.uiwidgets/Runtime/widgets/framework.cs

4
com.unity.uiwidgets/Runtime/widgets/framework.cs


badAncestors.Add(ancestor.widget);
}
else if (ancestor is RenderObjectElement) {
//temporary work around the version miss match issue between 1.5.4(original) and 1.17.5(changes for local position)
if (this.widget is Positioned) {
break;
}
if (this.widget.debugIsValidAncestor(((RenderObjectElement) ancestor).widget)) {
break;
}

正在加载...
取消
保存