mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-25 16:07:49 +01:00
Fix the bug which shuffled tracks when one was removed. Please test.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3656 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e546292468
commit
a35abc0528
2 changed files with 4 additions and 0 deletions
|
|
@ -577,7 +577,9 @@ void
|
|||
Editor::route_list_delete (const Gtk::TreeModel::Path& path)
|
||||
{
|
||||
session->set_remote_control_ids();
|
||||
ignore_route_list_reorder = true;
|
||||
redisplay_route_list ();
|
||||
ignore_route_list_reorder = false;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -642,7 +642,9 @@ void
|
|||
Mixer_UI::track_list_delete (const Gtk::TreeModel::Path& path)
|
||||
{
|
||||
session->set_remote_control_ids();
|
||||
ignore_route_reorder = true;
|
||||
redisplay_track_list ();
|
||||
ignore_route_reorder = false;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue