13
0

fix potentially unset variable (thanks clang!)

This commit is contained in:
Paul Davis 2024-10-17 15:06:04 -06:00
parent e74f57c52b
commit c5c865f589

View File

@ -1673,6 +1673,7 @@ bool
MidiView::note_in_region_range (const std::shared_ptr<NoteType> note, bool& visible) const
{
if (!_midi_region) {
visible = true;
return true;
}