浏览代码

fix chinese line break issue

/main
fzhangtj 6 年前
当前提交
d312c026
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 3
      Runtime/ui/txt/wordbreaker.cs

3
Runtime/ui/txt/wordbreaker.cs


break;
}
var currentType = WordSeparate.classifyChar(this._text, this._current + this._offset);
if (currentType != preType) {
if ((currentType == WordSeparate.characterType.WhiteSpace)
!= (preType == WordSeparate.characterType.WhiteSpace)) {
break;
}
preType = currentType;

正在加载...
取消
保存