summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 0bea376fc9..555dff5092 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -115,10 +115,11 @@ Processor::state (bool full_state)
stringstream sstr;
for (set<Evoral::Parameter>::iterator x = _visible_controls.begin();
x != _visible_controls.end(); ++x) {
+
if (x != _visible_controls.begin()) {
sstr << ' ';
}
- sstr << *x;
+ sstr << (*x).id();
}
automation.add_property ("visible", sstr.str());