13
0

OSC: make sed_fader work with banking too.

This commit is contained in:
Len Ovens 2017-06-23 17:34:22 -07:00
parent 0b21143234
commit 01e75da96b

View File

@ -150,6 +150,7 @@ OSCSelectObserver::OSCSelectObserver (boost::shared_ptr<Stripable> s, lo_address
// sends, plugins and eq
// detecting processor changes is now in osc.cc
// but... MB master send enable is different
if (_strip->master_send_enable_controllable ()) {
_strip->master_send_enable_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::enable_message, this, X_("/select/master_send_enable"), _strip->master_send_enable_controllable()), OSC::instance());
@ -508,7 +509,8 @@ OSCSelectObserver::tick ()
for (uint32_t i = 1; i <= send_timeout.size(); i++) {
if (send_timeout[i]) {
if (send_timeout[i] == 1) {
text_with_id ("/select/send_name", i, _strip->send_name(i - 1));
uint32_t pg_offset = (sur->send_page - 1) * sur->send_page_size;
text_with_id ("/select/send_name", i, _strip->send_name(pg_offset + i - 1));
}
send_timeout[i]--;
}