reorder hotkeys

the way they appear in the GUI and similiar ones together
This commit is contained in:
Matthias Mailänder
2013-12-06 09:09:18 +01:00
parent 08166c0a64
commit 4b70448823
2 changed files with 8 additions and 4 deletions

View File

@@ -239,15 +239,18 @@ namespace OpenRA.Mods.RA.Widgets.Logic
// TODO: Extract these to a yaml file
var specialHotkeys = new Dictionary<string, string>()
{
{ "PauseKey", "Pause / Unpause" },
{ "CycleBaseKey", "Jump to base" },
{ "ToLastEventKey", "Jump to last radar event" },
{ "ToSelectionKey", "Jump to selection" },
{ "SelectAllUnitsKey", "Select all units on screen" },
{ "PauseKey", "Pause / Unpause" },
{ "SellKey", "Sell mode" },
{ "PowerDownKey", "Power-down mode" },
{ "RepairKey", "Repair mode" },
{ "CycleTabsKey", "Cycle production tabs" },
{ "ToggleStatusBarsKey", "Toggle status bars" }
};