mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Modify route _processor list set up so that the logic for placing `invisible' processors (e.g. internal returns etc.) is in one place. Add option to get pre-fade listen from before or after pre-fade processors (#3781).
git-svn-id: svn://localhost/ardour2/branches/3.0@8903 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c77d116703
commit
13232d03f3
13 changed files with 326 additions and 213 deletions
|
|
@ -1090,6 +1090,18 @@ RCOptionEditor::RCOptionEditor ()
|
|||
mm->add (ExternalMonitoring, _("audio hardware"));
|
||||
|
||||
add_option (_("Audio"), mm);
|
||||
|
||||
ComboOption<PFLPosition>* pp = new ComboOption<PFLPosition> (
|
||||
"pfl-position",
|
||||
_("PFL signals come from"),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_pfl_position),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_pfl_position)
|
||||
);
|
||||
|
||||
pp->add (PFLFromBeforeProcessors, _("before pre-fader processors"));
|
||||
pp->add (PFLFromAfterProcessors, _("pre-fader but after pre-fader processors"));
|
||||
|
||||
add_option (_("Audio"), pp);
|
||||
|
||||
add_option (_("Audio"),
|
||||
new BoolOption (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue