From 3e87c297fcb80ff4972eb3fce10d6531cd0a7a9a Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sat, 9 Jul 2011 21:10:40 +0000 Subject: [PATCH] Input widget - fix behavior of TAB key --- BizHawk.MultiClient/config/InputWidget.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/config/InputWidget.cs b/BizHawk.MultiClient/config/InputWidget.cs index e99a8d2998..b544ac0332 100644 --- a/BizHawk.MultiClient/config/InputWidget.cs +++ b/BizHawk.MultiClient/config/InputWidget.cs @@ -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; } } } \ No newline at end of file