We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac4574e commit ab3739aCopy full SHA for ab3739a
scc/drivers/sc_dongle.py
@@ -184,6 +184,12 @@ def __repr__(self):
184
185
186
def input(self, idata):
187
+ if idata.rtrig >= 253 and (idata.buttons & SCButtons.RT == 0):
188
+ idata = idata._replace(rtrig=253)
189
+
190
+ if idata.ltrig >= 253 and (idata.buttons & SCButtons.LT == 0):
191
+ idata = idata._replace(ltrig=253)
192
193
old_state, self._old_state = self._old_state, idata
194
if self.mapper:
195
if self._input_rotation_l:
0 commit comments