Removed mouse capture while composing text in chat (fixes #2486)

This commit is contained in:
Carko
2013-01-08 22:18:07 +01:00
committed by Chris Forbes
parent 5502864a1f
commit 50f8465d1e

View File

@@ -45,11 +45,6 @@ namespace OpenRA.Widgets
public override Rectangle EventBounds { get { return Rectangle.Empty; } }
public override bool LoseFocus(MouseInput mi)
{
return composing ? false : base.LoseFocus(mi);
}
public override bool HandleKeyPress(KeyInput e)
{
if (e.Event == KeyInputEvent.Up) return false;