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:
Sampo Savolainen 2008-08-05 17:22:51 +00:00
parent e546292468
commit a35abc0528
2 changed files with 4 additions and 0 deletions

View file

@ -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

View file

@ -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