summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2015-10-11 23:24:14 -0700
committerLen Ovens <len@ovenwerks.net>2015-10-11 23:24:14 -0700
commit79113144ef2ac33007f29dcea9297114998f92d3 (patch)
tree91ec0637ee3c198d99022a3ff06fd0b9a1c4f742
parent796e404819f0ef800bdaea1344129ed9d1bd4532 (diff)
Correct wrong value on LCD strip when fader is touched (fixs #6619 from Petr Vejsada)
-rw-r--r--libs/surfaces/mackie/strip.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/mackie/strip.cc b/libs/surfaces/mackie/strip.cc
index b1efda6086..bf9e33d1b4 100644
--- a/libs/surfaces/mackie/strip.cc
+++ b/libs/surfaces/mackie/strip.cc
@@ -592,7 +592,7 @@ Strip::fader_touch_event (Button&, ButtonState bs)
_fader->start_touch (_surface->mcp().transport_frame());
if (ac) {
- queue_parameter_display ((AutomationType) ac->parameter().type(), ac->internal_to_interface (ac->get_value()));
+ queue_parameter_display ((AutomationType) ac->parameter().type(), ac->get_value());
}
}