Fix moving master

This commit is contained in:
Len Ovens 2016-10-30 06:48:05 -07:00
parent 0ea9270a4b
commit 997b48baf7

View File

@ -4053,7 +4053,8 @@ PresentationInfo::order_t
ARDOUR_UI::translate_order (RouteDialogs::InsertAt place)
{
if (editor->get_selection().tracks.empty()) {
return PresentationInfo::max_order;
// tracks empty actually means we have master, add 1
return PresentationInfo::max_order + 1;
}
PresentationInfo::order_t order_hint = PresentationInfo::max_order;