From 94bd1f260523a41eaab23d67649b3cfe08f36366 Mon Sep 17 00:00:00 2001 From: Lerg Date: Sun, 28 Feb 2021 19:02:32 +0300 Subject: [PATCH] Issue #976 Some inputs are missing the ability to be rebound because they are missing from the input iterator --- assets/voxygen/i18n/en/gameinput.ron | 1 + voxygen/src/window.rs | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/assets/voxygen/i18n/en/gameinput.ron b/assets/voxygen/i18n/en/gameinput.ron index 231740d70b..c0ab093d43 100644 --- a/assets/voxygen/i18n/en/gameinput.ron +++ b/assets/voxygen/i18n/en/gameinput.ron @@ -55,6 +55,7 @@ "gameinput.select": "Select Entity", "gameinput.acceptgroupinvite": "Accept Group Invite", "gameinput.declinegroupinvite": "Decline Group Invite", + "gameInput::cyclecamera": "Cycle camera", "gameinput.crafting": "Crafting", "gameinput.fly": "Fly", "gameinput.sneak": "Sneak", diff --git a/voxygen/src/window.rs b/voxygen/src/window.rs index 8bd5175731..849d3a1aae 100644 --- a/voxygen/src/window.rs +++ b/voxygen/src/window.rs @@ -197,6 +197,10 @@ impl GameInput { GameInput::Slot9, GameInput::Slot10, GameInput::SwapLoadout, + GameInput::CycleCamera, + GameInput::Select, + GameInput::AcceptGroupInvite, + GameInput::DeclineGroupInvite, ] .iter() .copied()