소스 검색

Fixed TableView ProcessKey return value when no Table is loaded

tznind 4 년 전
부모
커밋
e68df90d27
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Terminal.Gui/Views/TableView.cs

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

@@ -580,7 +580,7 @@ namespace Terminal.Gui {
 		{
 			if(Table == null){
 				PositionCursor ();
-				return true;
+				return false;
 			}
 
 			if(keyEvent.Key == CellActivationKey && Table != null) {