1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-29 06:59:27 +02:00

Bug 705 - Envelope points not deleted correctly when button up over label track. Steve's patch.

This commit is contained in:
v.audacity 2014-03-22 03:27:42 +00:00
parent 60c47829ed
commit 74a660ef16

View File

@ -5340,7 +5340,7 @@ bool TrackPanel::HandleLabelTrackMouseEvent(LabelTrack * lTrack, wxRect &r, wxMo
}
} else if (event.Dragging()) {
;
} else if( event.LeftUp()) {
} else if (event.LeftUp() && (mCapturedTrack->GetKind() == Track::Label)) {
SetCapturedTrack( NULL );
}