mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
add new per-session MIDI-region-copy-is-fork: if set, all MIDI region copies will be independent from each other (via MIDIRegion::clone()); visible in Session properties editor under the Misc tab
git-svn-id: svn://localhost/ardour2/branches/3.0@10207 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
13dc17bb4e
commit
7cded3707f
5 changed files with 17 additions and 3 deletions
|
|
@ -260,6 +260,15 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
|
|||
|
||||
add_option (_("Misc"), lm);
|
||||
|
||||
add_option (_("Misc"), new OptionEditorHeading (_("MIDI Options")));
|
||||
|
||||
add_option (_("Misc"), new BoolOption (
|
||||
"midi-copy-is-fork",
|
||||
_("MIDI region copies are independent"),
|
||||
sigc::mem_fun (*_session_config, &SessionConfiguration::get_midi_copy_is_fork),
|
||||
sigc::mem_fun (*_session_config, &SessionConfiguration::set_midi_copy_is_fork)
|
||||
));
|
||||
|
||||
add_option (_("Misc"), new OptionEditorHeading (_("MIDI Note Overlaps")));
|
||||
|
||||
ComboOption<InsertMergePolicy>* li = new ComboOption<InsertMergePolicy> (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue