summaryrefslogtreecommitdiff
path: root/libs/ardour/presentation_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/presentation_info.cc')
-rw-r--r--libs/ardour/presentation_info.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/presentation_info.cc b/libs/ardour/presentation_info.cc
index 363aa40e6a..b992f6d5c9 100644
--- a/libs/ardour/presentation_info.cc
+++ b/libs/ardour/presentation_info.cc
@@ -54,13 +54,15 @@ PresentationInfo::parse (string const& str)
/* new school, segmented string "NNN:TYPE" */
string f;
char c;
+
s >> _order;
/* skip colon */
s >> c;
/* grab flags */
s >> f;
+
_flags = Flag (string_2_enum (f, _flags)|GroupOrderSet);
- std::cerr << "Parsed [" << str << "] as " << _order << " + " << enum_2_string (_flags) << std::endl;
+
return 0;
}