using song_model now

This commit is contained in:
Chris Cochrun 2023-05-12 17:00:23 -05:00
parent 68b30877ed
commit 184ad4fe57
4 changed files with 76 additions and 19 deletions

View file

@ -435,7 +435,7 @@ Item {
function changeSong(index) {
clearSlides();
console.log(index);
song = songProxyModel.songModel.getSong(index);
song = songProxyModel.getSong(index);
console.log(song.lyrics);
songIndex = song.id;
@ -581,7 +581,7 @@ Item {
function changeSlideText(id) {
/* console.log("Here are the verses: " + verses); */
const verses = songProxyModel.songModel.getLyricList(id);
const verses = songProxyModel.getLyricList(id);
verses.forEach(slideEditor.appendVerse);
/* slideEditor.loadVideo(); */
}