From 9410ace26d69565df8c202a2dbbfd6de55f507c0 Mon Sep 17 00:00:00 2001 From: Jonatan Liljedahl Date: Wed, 14 Mar 2012 15:05:17 +0100 Subject: [PATCH] Server: avoid node not found messages for volume synth --- SCClassLibrary/Common/Control/Server.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCClassLibrary/Common/Control/Server.sc b/SCClassLibrary/Common/Control/Server.sc index 4faa5ff04..6c7a220e4 100644 --- a/SCClassLibrary/Common/Control/Server.sc +++ b/SCClassLibrary/Common/Control/Server.sc @@ -754,10 +754,10 @@ Server { sendQuit = nil; this.serverRunning = false; if(scopeWindow.notNil) { scopeWindow.quit }; - RootNode(this).freeAll; if(volume.isPlaying) { volume.free }; + RootNode(this).freeAll; this.newAllocators; } -- 2.11.4.GIT