13
0

Don't catch up with the playhead after drags.

git-svn-id: svn://localhost/ardour2/branches/3.0@8767 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-02-08 11:46:11 +00:00
parent 5d22b482dc
commit d9c4625ff5
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ DragManager::abort ()
_drags.clear ();
_editor->set_follow_playhead (_old_follow_playhead);
_editor->set_follow_playhead (_old_follow_playhead, false);
_ending = false;
}

View File

@ -528,7 +528,7 @@ EditorSummary::on_button_release_event (GdkEventButton*)
_move_dragging = false;
_zoom_dragging = false;
_editor->_dragging_playhead = false;
_editor->set_follow_playhead (_old_follow_playhead);
_editor->set_follow_playhead (_old_follow_playhead, false);
return true;
}