From baf51996c4f152a0750c14a52f57ed1fcd04b8cc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 27 Feb 2009 23:26:10 +0000 Subject: [PATCH] Set thread done flag when freeze completes. git-svn-id: svn://localhost/ardour2/branches/3.0@4706 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_ops.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 07fa68f714..47ffd952d2 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -3626,6 +3626,7 @@ void* Editor::freeze_thread () { clicked_routeview->audio_track()->freeze (*current_interthread_info); + current_interthread_info->done = true; return 0; }