add group disposition argument to Route::set_gain() and use it in various UIs

Executive decisions were necessary in a couple of places about the correct group disposition
behaviour, notably faderport and OSC surfaces
This commit is contained in:
Paul Davis 2016-01-18 10:52:15 -05:00
parent 1948b50a68
commit 64c9198d60
10 changed files with 24 additions and 20 deletions

View file

@ -248,7 +248,7 @@ ControlProtocol::route_set_gain (uint32_t table_index, float gain)
boost::shared_ptr<Route> r = route_table[table_index];
if (r != 0) {
r->set_gain (gain, this);
r->set_gain (gain, Controllable::UseGroup);
}
}