summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-05-19 18:02:23 +0200
committerRobin Gareus <robin@gareus.org>2020-05-19 18:02:23 +0200
commit3a9bf57af964f6a83f5b6c59b1e363e12ea92598 (patch)
treef59cbcc365cc2d501d54b4a5bc1e88d4e641cda6 /libs/ardour/session_state.cc
parent8564e6f76015d12570c294720e2af77630c53c91 (diff)
Don't save the session when creating busses
Most calls to new_audio_route() used save = false, only directly creating busses saved the session. Probably for historical reasons.
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 62edd9efcd..041a84eac4 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -1842,7 +1842,7 @@ Session::load_routes (const XMLNode& node, int version)
BootMessage (_("Tracks/busses loaded; Adding to Session"));
- add_routes (new_routes, false, false, false, PresentationInfo::max_order);
+ add_routes (new_routes, false, false, PresentationInfo::max_order);
BootMessage (_("Finished adding tracks/busses"));