13
0

Always create a triggerbox with new tracks

This fixes an issue when creating tracks from the import dialog,
or via Drag/Drop, or using a template.

All tracks should always have trigger-boxes.
This commit is contained in:
Robin Gareus 2022-01-03 23:41:58 +01:00
parent 47d34bfbfb
commit 3c2878974c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -738,7 +738,7 @@ public:
PresentationInfo::order_t order,
TrackMode mode = Normal,
bool input_auto_connect = true,
bool with_triggers = false
bool with_triggers = true
);
std::list<boost::shared_ptr<MidiTrack> > new_midi_track (
@ -749,7 +749,7 @@ public:
PresentationInfo::order_t,
TrackMode mode,
bool input_auto_connect,
bool with_triggers = false
bool with_triggers = true
);
RouteList new_audio_route (int input_channels, int output_channels, RouteGroup* route_group, uint32_t how_many, std::string name_template, PresentationInfo::Flag, PresentationInfo::order_t);