소스 검색

Fix build

Ross Ferguson 5 년 전
부모
커밋
a5ae6f0176
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Terminal.Gui/Views/TextFieldAutoComplete.cs

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

@@ -67,7 +67,7 @@ namespace Terminal.Gui {
 			this.Add(search);
 			this.SetFocus(search);
 
-			this.OnEnter += (object sender, EventArgs e) => {
+			this.Enter += (object sender, EventArgs e) => {
 				this.SetFocus(search);
 				search.CursorPosition = search.Text.Length;
 			};