Input widget - fix behavior of TAB key

This commit is contained in:
andres.delikat 2011-07-09 21:10:40 +00:00
parent 1496c9eb1d
commit 3e87c297fc
1 changed files with 1 additions and 5 deletions

View File

@ -194,11 +194,7 @@ namespace BizHawk.MultiClient
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Tab)
{
ReadKeys();
}
return false;
return true;
}
}
}