Trap WM_SYSCHAR to avoid generating system beeps on Alt+[Key] combinations.

This commit is contained in:
the_fiddler 2009-10-20 11:35:35 +00:00
parent c80cac88ca
commit 7ae6858ab5

View file

@ -431,6 +431,9 @@ namespace OpenTK.Platform.Windows
}
break;
case WindowMessage.SYSCHAR:
return IntPtr.Zero;
case WindowMessage.KILLFOCUS:
keyboard.ClearKeys();
break;