Fix copy/paste error in SuppressKey test

This commit is contained in:
tznind
2022-10-19 07:52:13 +01:00
committed by BDisp
parent 7b16a93eb8
commit 5005434fb2

View File

@@ -1243,6 +1243,9 @@ namespace Terminal.Gui.Views {
private bool SuppressKey (KeyEvent arg)
{
if (arg.KeyValue == 'j')
return true;
return false;
}