summaryrefslogtreecommitdiff
path: root/libs/ardour/stripable.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-17 04:23:55 +0200
committerRobin Gareus <robin@gareus.org>2017-06-17 04:37:05 +0200
commit591d75f1d24f3b8acc76995434c9a377e0245337 (patch)
tree5e71613fe633eb7dc8437af451373a4ca0eeafb4 /libs/ardour/stripable.cc
parent237aa3e3a0718d55450a2094eba010bf76f2625b (diff)
Fix stripable order for new strips & master-order
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 c4f128b4e8..721d92789f 100644
--- a/libs/ardour/stripable.cc
+++ b/libs/ardour/stripable.cc
@@ -102,7 +102,7 @@ Stripable::set_state (XMLNode const& node, int version)
}
- if (!_presentation_info.special()) {
+ if (!_presentation_info.special(false)) {
if ((prop = node.property (X_("order-key"))) != 0) {
_presentation_info.set_order (atol (prop->value()));
}