From 79113144ef2ac33007f29dcea9297114998f92d3 Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Sun, 11 Oct 2015 23:24:14 -0700 Subject: [PATCH] Correct wrong value on LCD strip when fader is touched (fixs #6619 from Petr Vejsada) --- libs/surfaces/mackie/strip.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } }