OSC: New personal monitor buses no longer need to be hidden

This commit is contained in:
Len Ovens 2018-11-07 18:21:40 -08:00
parent 1b2b3452cb
commit e9013c0f99
2 changed files with 0 additions and 29 deletions

View file

@ -6464,12 +6464,6 @@ OSC::cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo
PBD::warning << "OSC: new_send has wrong number or type of parameters." << endmsg;
}
}
else if (!strncmp (path, X_("/cue/hide_aux"), 13)) {
// hide our Aux bus
if (argc) {
ret = cue_hide (value, msg);
}
}
else if (!strncmp (path, X_("/cue/next_aux"), 13)) {
// switch to next Aux bus
if ((!argc) || argv[0]->f || argv[0]->i) {
@ -6593,8 +6587,6 @@ OSC::cue_new_aux (string name, string dest_1, string dest_2, lo_message msg)
r->output ()->connect (*(ports.begin()), dest_1, this);
r->output ()->connect (*(i), dest_2, this);
}
aux->presentation_info().set_hidden (true);
cue_set ((uint32_t) -1, msg);
session->set_dirty();
return 0;
@ -6634,26 +6626,6 @@ OSC::cue_new_send (string rt_name, lo_message msg)
return 1;
}
int
OSC::cue_hide (float state, lo_message msg)
{
OSCSurface *sur = get_surface(get_address (msg), true);
if (sur->cue) {
boost::shared_ptr<Route> aux = boost::dynamic_pointer_cast<Route> (get_strip (sur->aux, get_address(msg)));
if (aux) {
if (aux->is_hidden () != (bool) state) {
aux->presentation_info().set_hidden ((bool) state);
}
return 0;
} else {
PBD::warning << "OSC: hide_aux - No Aux found." << endmsg;
}
} else {
PBD::warning << "OSC: hide_aux - monitoring not set, select aux first." << endmsg;
}
return 1;
}
int
OSC::cue_connect_aux (std::string dest, lo_message msg)
{