TBF : Processing keys in MainWnd disabled for CEVAK_200

This commit is contained in:
Milan Hanajik 2018-09-13 17:03:59 +02:00
parent 34479778b9
commit 92d246eda0

View File

@ -343,7 +343,9 @@ namespace TBF
/// </summary>
private void MainWnd_KeyPress(object sender, KeyPressEventArgs e)
{
#if !BADGER_MALA_TRAT && !BADGER_STREDNA_TRAT && !BADGER_VELKA_TRAT && !GENESIS
#if BADGER_MALA_TRAT || BADGER_STREDNA_TRAT || BADGER_VELKA_TRAT || GENESIS || CEVAK_200
/// Do nothing = do not process keys
#else
if (BenchControlPanel != null && BenchControlPanel.ProcessKey(e.KeyChar))
{
e.Handled = true;