From de29ed02bcbec1a6df14345afd36bd16784f5ee4 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 31 Jan 2016 22:41:46 -0500 Subject: [PATCH] mackie: display correct numerical send level --- 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 f29c87691a..da1a8be10e 100644 --- a/libs/surfaces/mackie/strip.cc +++ b/libs/surfaces/mackie/strip.cc @@ -515,7 +515,7 @@ Strip::notify_send_level_change (AutomationType type, uint32_t send_num, bool fo if (control) { float val = control->get_value(); - do_parameter_display (type, control->internal_to_interface (val)); + do_parameter_display (type, val); /* update pot/encoder */ _surface->write (_vpot->set (control->internal_to_interface (val), true, Pot::wrap)); }