summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorJan Lentfer <jan.lentfer@web.de>2020-02-13 09:52:12 +0100
committerJan Lentfer <jan.lentfer@web.de>2020-02-13 09:53:38 +0100
commitb9b6a5724554a6cb9f97e742c4013c1667cb6f55 (patch)
tree2b1604ee05ce9aa1a351a84f2ec7cd3c0d187873 /libs/surfaces
parent7e25298721f534b16f25be4920eaddba4f513668 (diff)
LCXL: fix pan for Mixbus device mode, too
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/launch_control_xl/controllers.cc4
1 files 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);
}
}