Royi Bernthal 7 년 전
부모
커밋
207025c3f3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      gui/src/controls/textBlock.ts

+ 1 - 1
gui/src/controls/textBlock.ts

@@ -136,7 +136,7 @@ module BABYLON.GUI {
             var maxLineWidth: number = 0;
 
             _lines.forEach(_line => {
-                //can't get context here? if so, have 2 calculations in _additionalProcessing instead? one for with idealWidth and one without
+                //can't get context here? if so, have 2 calculations in _additionalProcessing instead? one with idealWidth and one without
                 var lineWidth: number = this._parseLine(_line, context).width;
 
                 if (lineWidth > maxLineWidth) maxLineWidth = lineWidth;