summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-04 14:32:28 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-04 14:32:28 +0000
commit89d1a2fdf5f9794f56f6bf960bfbebfad913cf74 (patch)
tree5a2d55a420955f86151ba37870f1de0762195456 /libs/ardour/session_state.cc
parent1feaa65d167e59b400b8ac003f69e33934ee7c08 (diff)
dramatically speed up the addition of large numbers of busses + tracks. consists of a backend part (ignore JACK graph/latency callbacks while we're adding tracks) and a GUI side (avoid O(N^N) behaviour while adding each new time axis view)
git-svn-id: svn://localhost/ardour2/branches/3.0@13595 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 74257ef482..a1f457393a 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -206,6 +206,7 @@ Session::first_stage_init (string fullpath, string snapshot_name)
_play_range = false;
_exporting = false;
pending_abort = false;
+ _adding_routes_in_progress = false;
destructive_index = 0;
first_file_data_format_reset = true;
first_file_header_format_reset = true;