diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc index a4e4e48ef1..b52c8ca716 100644 --- a/gtk2_ardour/editor_selection.cc +++ b/gtk2_ardour/editor_selection.cc @@ -2404,7 +2404,7 @@ Editor::move_selected_tracks (bool up) for (auto & s : sl) { if (s->is_selected()) { - if (up && (s->presentation_info().order() <= 1)) { + if (up && (s->presentation_info().order() <= 0)) { return; } else if (!up && (s->presentation_info().order() >= sl.size() - 1)) { return;