8000 Fix clip_slot property listeners · steeltrack/AbletonOSC@e5d9696 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
Fix clip_slot property listeners
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Dec 31, 2023
1 parent c53cdbf commit e5d9696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abletonosc/clip_slot.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def clip_slot_callback(params: Tuple[Any]):
clip_slot = track.clip_slots[clip_index]

if pass_clip_index:
rv = func((track_index, clip_index), *args, params[2:])
rv = func(clip_slot, *args, tuple(params[0:]))
else:
rv = func(clip_slot, *args, params[2:])
rv = func(clip_slot, *args, tuple(params[2:]))

self.logger.info(track_index, clip_index, rv)
if rv is not None:
Expand Down

0 comments on commit e5d9696

Please sign in to comment.
0