summaryrefslogtreecommitdiff
path: root/libs/ardour/stripable.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-03 15:14:23 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-03 15:15:39 -0400
commite8379b3818b8a297d4ed911d1e7a42bc2b55a587 (patch)
treeba11533fe7c621e119d09ed040ae6d0a81d18b40 /libs/ardour/stripable.cc
parent0b5364426d006853c29aeec89c02ac796c5cb008 (diff)
simplify PresentationInfo concept of order so that it is always global
Cases that need more complex sort orders (e.g. all routes, then all vcas then master) need to take of this themselves
Diffstat (limited to 'libs/ardour/stripable.cc')
-rw-r--r--libs/ardour/stripable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/stripable.cc b/libs/ardour/stripable.cc
index c21d68c0a6..4fe3fb4287 100644
--- a/libs/ardour/stripable.cc
+++ b/libs/ardour/stripable.cc
@@ -136,7 +136,7 @@ Stripable::set_state (XMLNode const& node, int version)
if (!_presentation_info.special()) {
if ((prop = node.property (X_("order-key"))) != 0) {
- _presentation_info.set_group_order (atol (prop->value()));
+ _presentation_info.set_order (atol (prop->value()));
}
}
}