Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit bf0b109

Browse files
committed
fix bug were inactive keybinder was still recognizing
1 parent 6025067 commit bf0b109

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/controllers/keybinder.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,12 @@ def act(self, blendshape_values) -> dict:
182182
return
183183

184184
self.toggle_active()
185-
#MouseController().toggle_active()
186185

187186
self.key_states[state_name] = True
188187
elif (val < thres) and (self.key_states[state_name] is True):
189188
self.key_states[state_name] = False
190189

191-
elif self.is_active:
190+
elif self.is_active.get():
192191

193192
if device == "mouse":
194193

0 commit comments

Comments
 (0)