From 574133429a9a5dd870fe4bcad1efccf91ebbc8be Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 6 Jul 2011 06:15:04 +1200 Subject: [PATCH] Fix control groups --- OpenRA.Mods.Cnc/Widgets/CncWorldInteractionControllerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Cnc/Widgets/CncWorldInteractionControllerWidget.cs b/OpenRA.Mods.Cnc/Widgets/CncWorldInteractionControllerWidget.cs index cf4777fe40..e0fb1256f2 100644 --- a/OpenRA.Mods.Cnc/Widgets/CncWorldInteractionControllerWidget.cs +++ b/OpenRA.Mods.Cnc/Widgets/CncWorldInteractionControllerWidget.cs @@ -166,7 +166,7 @@ namespace OpenRA.Mods.Cnc.Widgets case "left": Keyboard = Keyboard.Set(ScrollDirection.Left, (e.Event == KeyInputEvent.Down)); return true; case "right": Keyboard = Keyboard.Set(ScrollDirection.Right, (e.Event == KeyInputEvent.Down)); return true; } - return false; + return base.HandleKeyPress(e); } public override void Tick()