From 0df9815d2c3c3581defb76c91b1f52e52f7ebf1e Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 10 Oct 2010 15:11:53 +1300 Subject: [PATCH] fix base-cycling for mac build, too? --- OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs index 53bd4ada67..f39213a89d 100644 --- a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs @@ -133,7 +133,7 @@ namespace OpenRA.Widgets return true; } - if (e.KeyChar == '\b') + if (e.KeyChar == '\b' || e.KeyChar == (char)127) { GotoNextBase(); return true;