Skip to content

Commit b93158e

Browse files
committed
Fix chords not deactivating properly
1 parent 403df03 commit b93158e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

OpenVR2Key/EasyOpenVR

OpenVR2Key/MainController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ private void RegisterActions()
271271
foreach (var actionKey in _actionKeys)
272272
{
273273
var localActionKey = actionKey;
274-
_ovr.RegisterDigitalAction($"/actions/keys/in/Key{actionKey}", (data, inputAction) => { OnAction(localActionKey, data, inputAction.handle); });
274+
_ovr.RegisterDigitalAction($"/actions/keys/in/Key{actionKey}", (data, inputAction) => { OnAction(localActionKey, data, inputAction.handle); }, actionKey.Contains("C"));
275275
}
276276
}
277277

OpenVR2Key/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

OpenVR2Key/Properties/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,6 @@
128128
<value>..\resources\logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
129129
</data>
130130
<data name="Version" xml:space="preserve">
131-
<value>v0.53</value>
131+
<value>v0.54</value>
132132
</data>
133133
</root>

0 commit comments

Comments
 (0)