summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-07-01 11:12:42 -0700
committerLen Ovens <len@ovenwerks.net>2017-07-01 11:14:55 -0700
commit8bc25fb9715ec044a2b82aa01d717f26c852f217 (patch)
treef176339ff45551404b5c8537573af7e5c159fc71 /libs/surfaces
parent63ea7b6516dbd7554d1eff6c98de50cf61fc9a72 (diff)
OSC: add strip type flag for master and monitor to strip list
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/osc/osc.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index a4aa32564c..a73c2af880 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -1250,6 +1250,10 @@ OSC::routes_list (lo_message msg)
lo_message_add_string (reply, "MB");
} else if (s->presentation_info().flags() & PresentationInfo::VCA) {
lo_message_add_string (reply, "V");
+ } else if (s->is_master()) {
+ lo_message_add_string (reply, "MA");
+ } else if (s->is_monitor()) {
+ lo_message_add_string (reply, "MO");
}
lo_message_add_string (reply, s->name().c_str());