adding some tweaks to making song_editor working better

This commit is contained in:
Chris Cochrun 2023-10-09 15:11:55 -05:00
parent 96d5bdac73
commit f34e8cbd7e
4 changed files with 71 additions and 67 deletions

View file

@ -754,6 +754,7 @@ QStringList SongProxyModel::getLyricList(const int &row) {
QVariantMap SongProxyModel::getSong(const int &row) {
QVariantMap song = m_songModel->getItem(mapToSource(index(row, 0)).row());
qDebug() << song;
return song;
}