Explorar el Código

Fixed TableView ProcessKey return value when no Table is loaded

tznind hace 4 años
padre
commit
e68df90d27
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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) {