mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Redo previous commit's fix...
... the bug was introduced at e581fa60d9
I think it is better to make TrackPanel::OnTrackMenu crash-proof when
called with the default argument
This commit is contained in:
@@ -992,7 +992,7 @@ void TrackPanel::ScrollIntoView(int x)
|
||||
|
||||
void TrackPanel::OnTrackMenu(Track *t)
|
||||
{
|
||||
CellularPanel::DoContextMenu( &TrackView::Get( *t ) );
|
||||
CellularPanel::DoContextMenu( t ? &TrackView::Get( *t ) : nullptr );
|
||||
}
|
||||
|
||||
// Tracks have been removed from the list.
|
||||
|
||||
Reference in New Issue
Block a user