aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/midi-control/faders.scm
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-07-10 17:01:25 +0200
committerThomas White <taw@physics.org>2022-07-10 17:02:43 +0200
commitb2ffed93c6a40243ee7d284d237b6facabee8c4c (patch)
treeae8e2434bc4e014a6def78f10a4c02763a9ed45e /guile/starlet/midi-control/faders.scm
parent1964cfbb7c93c56c7b0dff9fc62e6381a63b44e4 (diff)
Don't send fix/attr/val to state update hook
It's not used anywhere, and it doesn't work - there are many other kinds of update apart from setting an individual value.
Diffstat (limited to 'guile/starlet/midi-control/faders.scm')
-rw-r--r--guile/starlet/midi-control/faders.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guile/starlet/midi-control/faders.scm b/guile/starlet/midi-control/faders.scm
index d43a513..a3dcdee 100644
--- a/guile/starlet/midi-control/faders.scm
+++ b/guile/starlet/midi-control/faders.scm
@@ -358,7 +358,7 @@
;; Value changed
(add-update-hook! programmer-state
- (lambda (fix attr value source)
+ (lambda (source)
(unless (eq? source controller)
(update-midi-controls controller (get-selection))))))