mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
... but respect lyrics if set
This commit is contained in:
parent
7d960d2033
commit
5dbd60e9d4
|
@ -629,10 +629,12 @@ void VLSong::AddNote(VLLyricsNote note, size_t measure, VLFraction at)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Deliberately leave fLyrics alone
|
// Deliberately leave fLyrics alone unless set in incoming note
|
||||||
//
|
//
|
||||||
i->fPitch = note.fPitch;
|
i->fPitch = note.fPitch;
|
||||||
i->fVisual = note.fVisual;
|
i->fVisual = note.fVisual;
|
||||||
|
if (note.fLyrics.size())
|
||||||
|
i->fLyrics = note.fLyrics;
|
||||||
} else {
|
} else {
|
||||||
//
|
//
|
||||||
// Overlap, split current
|
// Overlap, split current
|
||||||
|
|
Loading…
Reference in New Issue
Block a user