From 82167000805df6924b16ced23c79edfe4934a3b7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 5 Jul 2010 01:13:18 +0000 Subject: [PATCH] Fix possible problems with _pending_locate_request getting stuck at true and hence stopping playhead movement. git-svn-id: svn://localhost/ardour2/branches/3.0@7369 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_transport.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 7b04b58974..8af9f0ca7b 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -783,6 +783,7 @@ Session::locate (nframes64_t target_frame, bool with_roll, bool with_flush, bool set_transport_speed (1.0, false); } loop_changing = false; + Located (); /* EMIT SIGNAL */ return; }