Fixed always swallowing keystrokes in ProcessKey in TableView

This commit is contained in:
tznind
2020-12-08 11:57:41 +00:00
parent 74d4d1b895
commit 1416f2f047

View File

@@ -205,6 +205,9 @@ namespace Terminal.Gui.Views {
SelectedColumn = Table == null ? 0 : Table.Columns.Count - 1;
Update ();
break;
default:
// Not a keystroke we care about
return false;
}
PositionCursor ();
return true;