[Summary] Bug fixed: the time info display (START, END, LENGTH) did not update upon finished region drag when there is no copied region and the moved region did not leave it’s original track.

This commit is contained in:
Valeriy Kamyshniy 2015-02-13 23:42:29 +02:00
parent 9b9c083609
commit 07a54ba8cc

View file

@ -1445,7 +1445,9 @@ RegionMoveDrag::finished_no_copy (
if (new_views.size() > 0) {
_editor->selection->set (new_views);
}
} else {
_editor->selection->clear_time (); // Perhaps "no copy" movement needs the time updated.
}
for (set<boost::shared_ptr<Playlist> >::iterator p = frozen_playlists.begin(); p != frozen_playlists.end(); ++p) {
(*p)->thaw();