move order button hotkey logic to ingame chrome logic

removes power-down again from cnc mod as it is not wanted there
This commit is contained in:
Matthias Mailänder
2013-03-23 09:47:35 +01:00
parent 57d85e2c97
commit 7f6eaf8d5e
3 changed files with 6 additions and 27 deletions

View File

@@ -41,6 +41,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic
{
w.Pressed = () => world.OrderGenerator is T;
w.OnMouseDown = mi => world.ToggleInputMode<T>();
w.OnKeyPress = ki => world.ToggleInputMode<T>();
}
}
}