From f1ed01b97fe6cb7852cec4ab67d6faad8fa45022 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 28 Jan 2016 23:03:02 -0500 Subject: [PATCH] mackie: fix display of send level value --- 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 6cc733b76f..8767e244d7 100644 --- a/libs/surfaces/mackie/strip.cc +++ b/libs/surfaces/mackie/strip.cc @@ -532,7 +532,7 @@ Strip::notify_send_level_change (AutomationType type, uint32_t send_num, bool fo if (control) { float val = control->get_value(); - queue_parameter_display (type, val); + queue_parameter_display (type, control->internal_to_interface (val)); /* update pot/encoder */ _surface->write (_vpot->set (control->internal_to_interface (val), true, Pot::wrap)); }