mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
Another safeguard against pianoroll timer issues
This commit is contained in:
parent
a8092c1782
commit
9ac66b3d86
1 changed files with 2 additions and 1 deletions
|
|
@ -591,7 +591,8 @@ Pianoroll::maybe_update ()
|
|||
_playhead_cursor->set_position (0);
|
||||
}
|
||||
|
||||
if (_session->transport_rolling() && follow_playhead() && !_scroll_drag) {
|
||||
assert (_session);
|
||||
if (_session && _session->transport_rolling() && follow_playhead() && !_scroll_drag) {
|
||||
reset_x_origin_to_follow_playhead ();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue