summaryrefslogtreecommitdiff
path: root/libs/ardour/region.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-22 22:46:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-22 22:46:31 +0000
commit7181a20dc69672510bd0c7ed0efc6abca5894149 (patch)
treef1762cc8b733f21d549f596642b1f56e114dab5d /libs/ardour/region.cc
parentae3c7234e76e6c26fdbb91ebdd38c28d09877797 (diff)
don't double-load NestedSource nodes, which are listed both forthe parent/root region and all children; even better, don't list them twice anyway - just for the whole file parent/root region
git-svn-id: svn://localhost/ardour2/branches/3.0@9761 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/region.cc')
-rw-r--r--libs/ardour/region.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc
index 8a95f22f8d..76b7ec0ec6 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -1207,7 +1207,11 @@ Region::state ()
node->add_property (buf2, buf);
}
- if (max_source_level() > 0) {
+ /* Only store nested sources for the whole-file region that acts
+ as the parent/root of all regions using it.
+ */
+
+ if (_whole_file && max_source_level() > 0) {
XMLNode* nested_node = new XMLNode (X_("NestedSource"));