From cfcb67040a708e91cb7c0f5906aa26a30642e88e Mon Sep 17 00:00:00 2001 From: Nikolay Date: Thu, 18 Dec 2014 15:58:40 +0200 Subject: [PATCH] [Summary] Fix bug 45112. TracksLive hangs on Processes list when quit after overall new session (Win only). Impossible to run application again till terminate process. [Bug Reviewed] AMishyn [Reviewed] YPozdniakov --- gtk2_ardour/ardour_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 5c98186f49..5bcad949f6 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -2965,7 +2965,7 @@ ARDOUR_UI::close_session() ARDOUR_COMMAND_LINE::session_name = ""; if (get_session_parameters (true, false)) { - exit (1); + UI::quit (); } }