summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-08-22 09:44:48 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-08-22 09:44:48 -0400
commit289ad1f3c7745afad5c097a1f0b2586f96392e82 (patch)
tree30772a70828088a5170639cc406c8536ac72edeb /gtk2_ardour/ardour_ui.cc
parent39e9add5c03a9870c38092df8a1b8a02ef8cf8fe (diff)
use user-specified insertion point when adding new tracks/busses with a template
Diffstat (limited to 'gtk2_ardour/ardour_ui.cc')
-rw-r--r--gtk2_ardour/ardour_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index d47723260e..f28913bab3 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -4063,9 +4063,9 @@ ARDOUR_UI::add_route_dialog_finished (int r)
if (!template_path.empty()) {
if (add_route_dialog->name_template_is_default()) {
- _session->new_route_from_template (count, PresentationInfo::max_order, template_path, string());
+ _session->new_route_from_template (count, order, template_path, string());
} else {
- _session->new_route_from_template (count, PresentationInfo::max_order, template_path, add_route_dialog->name_template());
+ _session->new_route_from_template (count, order, template_path, add_route_dialog->name_template());
}
return;
}