mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
FP8: use proper API to detect automation-playback
The custom code didn't take touch + touching into account when another surface was touching automation.
This commit is contained in:
parent
fdb3df7786
commit
23554fd185
1 changed files with 3 additions and 3 deletions
|
|
@ -449,10 +449,10 @@ FP8Strip::periodic_update_fader ()
|
|||
return;
|
||||
}
|
||||
|
||||
ARDOUR::AutoState state = ac->automation_state();
|
||||
if (state == Touch || state == Play) {
|
||||
notify_fader_changed ();
|
||||
if (!ac->automation_playback ()) {
|
||||
return;
|
||||
}
|
||||
notify_fader_changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue