mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-22 06:22:58 +02:00
Fix bug 2132
Selected audio tracks should be NOT empty. The test for Note Tracks is incorrect - Note tracks are NOT audio - but this needs fixing elsewhere.
This commit is contained in:
@@ -335,7 +335,7 @@ const ReservedCommandFlag
|
||||
!tracks.Selected<const NoteTrack>().empty()
|
||||
// even if not EXPERIMENTAL_MIDI_OUT
|
||||
||
|
||||
tracks.Selected<const WaveTrack>().empty()
|
||||
!tracks.Selected<const WaveTrack>().empty()
|
||||
;
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user