fix crash caused when deleting a region without a playlist PLUS make it impossible to select a region without a playlist (i.e. part of an unfinished capture pass). fixes #1502

git-svn-id: svn://localhost/ardour2/branches/3.0@7779 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-09-15 14:37:08 +00:00
parent 5e7ead224a
commit 3254468526
3 changed files with 25 additions and 9 deletions

View File

@ -4144,7 +4144,10 @@ Editor::cut_copy_regions (CutCopyOp op, RegionSelection& rs)
boost::shared_ptr<Playlist> pl = (*x)->region()->playlist();
if (!pl) {
/* impossible, but this handles it for the future */
/* region not yet associated with a playlist (e.g. unfinished
capture pass.
*/
++x;
continue;
}
@ -4203,8 +4206,10 @@ Editor::cut_copy_regions (CutCopyOp op, RegionSelection& rs)
/* the pmap is in the same order as the tracks in which selected regions occured */
for (vector<PlaylistMapping>::iterator i = pmap.begin(); i != pmap.end(); ++i) {
(*i).pl->thaw();
foo.push_back ((*i).pl);
if ((*i).pl) {
(*i).pl->thaw();
foo.push_back ((*i).pl);
}
}
if (!foo.empty()) {

View File

@ -98,11 +98,20 @@ bool RegionSelection::contains (RegionView* rv) const
/** Add a region to the selection.
* @param rv Region to add.
* @return false if we already had the region, otherwise true.
* @return false if we already had the region or if it cannot be added,
* otherwise true.
*/
bool
RegionSelection::add (RegionView* rv)
{
if (!rv->region()->playlist()) {
/* not attached to a playlist - selection not allowed.
This happens if the user tries to select a region
during a capture pass.
*/
return false;
}
if (contains (rv)) {
/* we already have it */
return false;

View File

@ -436,11 +436,13 @@ void
Selection::add (RegionView* r)
{
if (find (regions.begin(), regions.end(), r) == regions.end()) {
regions.add (r);
if (Config->get_link_region_and_track_selection()) {
add (&r->get_time_axis_view());
}
RegionsChanged ();
bool changed = regions.add (r);
if (Config->get_link_region_and_track_selection() && changed) {
add (&r->get_time_axis_view());
}
if (changed) {
RegionsChanged ();
}
}
}