From 60b6fb8eed421e335d66469585bcd554ad9ce8c9 Mon Sep 17 00:00:00 2001 From: Christoph Haag Date: Fri, 22 Mar 2024 12:10:48 +0100 Subject: [PATCH] a/bindings: Don't add dpad paths to all paths in script They can not be distinguished from core paths there, but they need to be gated by EXT_dpad_binding --- src/xrt/auxiliary/bindings/bindings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/xrt/auxiliary/bindings/bindings.py b/src/xrt/auxiliary/bindings/bindings.py index e3c659740..d599dab4c 100755 --- a/src/xrt/auxiliary/bindings/bindings.py +++ b/src/xrt/auxiliary/bindings/bindings.py @@ -187,8 +187,6 @@ class Component: if self.component_name == "position": paths.append(basepath + "/" + "x") paths.append(basepath + "/" + "y") - if self.has_dpad_emulation(): - paths += dpad_paths(basepath, self.dpad_emulation["center"]) paths.append(basepath) else: paths.append(basepath + "/" + self.component_name)