Fixed always returning true in ProcessKey even when not consuming keystroke

This commit is contained in:
tznind
2020-12-01 13:40:19 +00:00
parent 8c0c975aea
commit e833adf94d

View File

@@ -229,6 +229,10 @@ namespace Terminal.Gui {
case Key.End:
GoToEnd();
break;
default:
// we don't care about this keystroke
return false;
}
PositionCursor ();