1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-10 09:01:13 +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:
Steve Daulton 2019-06-18 12:22:39 +01:00
parent d84ab5948d
commit 722cb67baf

View File

@ -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()
;
}
},