13
0

prh: Small fix to /cue/send/enable feedback string

This commit is contained in:
Paul Hedderly 2017-08-21 15:08:22 +01:00 committed by Robin Gareus
parent f0387f07bd
commit 18060e597e

View File

@ -139,7 +139,7 @@ OSCCueObserver::send_init()
}
boost::shared_ptr<Processor> proc = boost::dynamic_pointer_cast<Processor> (send);
proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send_enable"), i + 1, proc->enabled()), OSC::instance());
proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send/enable"), i + 1, proc->enabled()), OSC::instance());
send_enabled_message (X_("/cue/send/enable"), i + 1, proc->enabled());
}
}