From b9b6a5724554a6cb9f97e742c4013c1667cb6f55 Mon Sep 17 00:00:00 2001 From: Jan Lentfer Date: Thu, 13 Feb 2020 09:52:12 +0100 Subject: [PATCH] LCXL: fix pan for Mixbus device mode, too --- libs/surfaces/launch_control_xl/controllers.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/surfaces/launch_control_xl/controllers.cc b/libs/surfaces/launch_control_xl/controllers.cc index aa881961af..6e2c3b3091 100644 --- a/libs/surfaces/launch_control_xl/controllers.cc +++ b/libs/surfaces/launch_control_xl/controllers.cc @@ -1152,8 +1152,8 @@ LaunchControlXL::dm_pan_azi (KnobID k) ac = first_selected_stripable()->pan_azimuth_control(); - if (ac && check_pick_up(knob, ac)) { - ac->set_value ( ac->interface_to_internal( knob->value() / 127.0), PBD::Controllable::UseGroup ); + if (ac && check_pick_up(knob, ac, true)) { + ac->set_value (ac->interface_to_internal((knob->value() / 127.0), true), PBD::Controllable::UseGroup); } }