فهرست منبع

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) {