commit 28dc03755e61d8395f50dd0e47130a1f4698b536
Author: Petr Vejsada <pv@propsychology.cz>
Date:   Sat Oct 3 23:30:05 2015 +0200

    Correct wrong value on LCD strip when fader is touched

diff --git a/libs/surfaces/mackie/strip.cc b/libs/surfaces/mackie/strip.cc
index 365972e..898980c 100644
--- a/libs/surfaces/mackie/strip.cc
+++ b/libs/surfaces/mackie/strip.cc
@@ -524,7 +524,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()));
 				queue_display_reset (2000);
 			}
 		}
