浏览代码

textspan equal

/main
xingwei.zhu 5 年前
当前提交
f43bacba
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      Runtime/painting/text_painter.cs

2
Runtime/painting/text_painter.cs


public TextSpan text {
get { return this._text; }
set {
if ((this._text == null && value == null) || this.text.Equals(value)) {
if ((this._text == null && value == null) || (this._text != null && this.text.Equals(value))) {
return;
}

正在加载...
取消
保存