LCXL: track select: change from 1 strip at a time to whole bank

This commit is contained in:
Térence Clastres 2018-08-19 18:27:54 +02:00
parent 266c5fbc16
commit 3f77c1245c
2 changed files with 9 additions and 8 deletions

View file

@ -526,13 +526,13 @@ LaunchControlXL::button_track_mode(TrackMode state)
void
LaunchControlXL::button_select_left()
{
switch_bank (max (0, bank_start - 1));
switch_bank (max (0, bank_start - (7 + (LaunchControlXL::use_fader8master))));
}
void
LaunchControlXL::button_select_right()
{
switch_bank (max (0, bank_start + 1));
switch_bank (max (0, bank_start + 7 + (LaunchControlXL::use_fader8master)));
}
void