소스 검색

Merge pull request #1027 from BDisp/textfield-unicode-frame

Fixes #1026. TextField is redrawing over SuperView limits with unicode characters using NetDriver.
Charlie Kindel 4 년 전
부모
커밋
fdd6ec355d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Terminal.Gui/Views/TextField.cs

+ 1 - 1
Terminal.Gui/Views/TextField.cs

@@ -211,7 +211,7 @@ namespace Terminal.Gui {
 
 			int p = first;
 			int col = 0;
-			int width = Frame.Width;
+			int width = Frame.Width + OffSetBackground ();
 			var tcount = text.Count;
 			var roc = new Attribute (Color.DarkGray, Color.Gray);
 			for (int idx = p; idx < tcount; idx++) {