From ceefbebe237bdbe7677529ed34d89b2d176d1351 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 23 Apr 2022 06:18:25 -0500 Subject: [PATCH] reorganizing --- src/qml/presenter/SongEditor.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/qml/presenter/SongEditor.qml b/src/qml/presenter/SongEditor.qml index 971054b..271cd0b 100644 --- a/src/qml/presenter/SongEditor.qml +++ b/src/qml/presenter/SongEditor.qml @@ -275,8 +275,6 @@ Item { function changeSong(index) { const s = songsqlmodel.getSong(index); - print(s.font); - print(s.title); song = s; songIndex = index; @@ -293,8 +291,7 @@ Item { changeSlideVAlignment(song.verticalTextAlignment); changeSlideFont(song.font, true); changeSlideFontSize(song.fontSize, true) - - print(song); + print(s.title); } function updateLyrics(lyrics) { @@ -389,7 +386,6 @@ Item { function changeSlideFont(font, updateBox) { const fontIndex = fontBox.find(font); - print(fontIndex); if (updateBox) fontBox.currentIndex = fontIndex; slideEditor.font = font;