FP8: do not reset fader to unity on re-selecting

This disables the feature added in 057fd9259e.
The idea was to use double-click to reset the fader (like
Harrison consoles). Simply re-select can lead to accidents.
This commit is contained in:
Robin Gareus 2022-12-13 18:01:27 +01:00
parent bd091906ac
commit eb1373404a
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ FaderPort8::select_strip (boost::weak_ptr<Stripable> ws)
}
#if 1 /* single exclusive selection by default, toggle via shift */
# if 1 /* selecting a selected strip -> move fader to unity */
# if 0 /* selecting a selected strip -> move fader to unity */
if (s == first_selected_stripable () && !shift_mod ()) {
if (_ctrls.fader_mode () == ModeTrack) {
boost::shared_ptr<AutomationControl> ac = s->gain_control ();