Fix corruption of follow playhead state on quit (#4048).

git-svn-id: svn://localhost/ardour2/branches/3.0@9542 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-05-17 15:28:12 +00:00
parent aa6adacc75
commit 71596b002e

View File

@ -92,9 +92,11 @@ DragManager::abort ()
delete *i;
}
_drags.clear ();
if (!_drags.empty ()) {
_editor->set_follow_playhead (_old_follow_playhead, false);
}
_editor->set_follow_playhead (_old_follow_playhead, false);
_drags.clear ();
_ending = false;
}