summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-01-09 19:05:38 -0800
committerLen Ovens <len@ovenwerks.net>2017-01-09 19:05:38 -0800
commit27773ed1b32f03a0c62173277a1c320821fc9520 (patch)
tree0774dbe4f9cbc657560b17bd86d5ca901fb4e709 /libs/surfaces
parentb073328700572ba28c0ab725f91a7f2db0f3e700 (diff)
OSC: Fix cue observer stop to zero controls
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/osc/osc_cue_observer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/surfaces/osc/osc_cue_observer.cc b/libs/surfaces/osc/osc_cue_observer.cc
index d6c6e38bfb..4fbd438877 100644
--- a/libs/surfaces/osc/osc_cue_observer.cc
+++ b/libs/surfaces/osc/osc_cue_observer.cc
@@ -149,9 +149,9 @@ OSCCueObserver::send_end ()
{
send_connections.drop_connections ();
for (uint32_t i = 1; i <= sends.size(); i++) {
- clear_strip (string_compose ("/select/send/fader/%1", i), 0);
- clear_strip (string_compose ("/select/send/enable/%1", i), 0);
- text_with_id (string_compose("/cue/send/name/%1", i), i, " ");
+ clear_strip (string_compose ("/cue/send/fader/%1", i), 0);
+ clear_strip (string_compose ("/cue/send/enable/%1", i), 0);
+ text_with_id ("/cue/send/name", i, " ");
}
}