mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Enable fan-out by default
When adding a new multi-channel instrument, assume the user wants to pan the outputs independently.
This commit is contained in:
parent
e0493814ec
commit
8b3dd2bed2
1 changed files with 2 additions and 1 deletions
|
|
@ -95,13 +95,14 @@ PluginSetupDialog::PluginSetupDialog (boost::shared_ptr<ARDOUR::Route> r, boost:
|
|||
f->add (*box);
|
||||
tbl->attach (*f, 1, 2, row, row + 1, EXPAND|FILL, SHRINK, 0, 8);
|
||||
_fan_out.signal_clicked.connect (sigc::mem_fun (*this, &PluginSetupDialog::toggle_fan_out));
|
||||
_fan_out.set_active (true);
|
||||
} else {
|
||||
_pi->set_preset_out (_pi->natural_output_streams ());
|
||||
update_sensitivity (_pi->natural_output_streams ().n_audio ());
|
||||
_fan_out.set_active (false);
|
||||
}
|
||||
|
||||
_keep_mapping.set_active (false);
|
||||
_fan_out.set_active (false);
|
||||
apply_mapping ();
|
||||
|
||||
add_button (Stock::ADD, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue