🐛 QVariantMap still seems to not work...
This commit is contained in:
parent
a0692aeadf
commit
bbc5bf3d7c
1 changed files with 2 additions and 2 deletions
|
@ -411,7 +411,7 @@ Item {
|
||||||
|
|
||||||
function newSong(index) {
|
function newSong(index) {
|
||||||
clearSlides();
|
clearSlides();
|
||||||
song = songProxyModel.getSong(index);
|
song = songProxyModel.songModel.getItem(index);
|
||||||
console.log(song.lyrics);
|
console.log(song.lyrics);
|
||||||
songIndex = song.id;
|
songIndex = song.id;
|
||||||
|
|
||||||
|
@ -435,7 +435,7 @@ Item {
|
||||||
function changeSong(index) {
|
function changeSong(index) {
|
||||||
clearSlides();
|
clearSlides();
|
||||||
console.log(index);
|
console.log(index);
|
||||||
song = songProxyModel.getSong(index);
|
song = songProxyModel.songModel.getItem(index);
|
||||||
console.log(song.lyrics);
|
console.log(song.lyrics);
|
||||||
songIndex = song.id;
|
songIndex = song.id;
|
||||||
console.log(song.id);
|
console.log(song.id);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue