From 802f3ffbde2c6fabc009c121439a64f514c65622 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 19 Apr 2023 11:59:05 -0500 Subject: [PATCH] bug: fixed presentation not looping --- src/qml/presenter/Presentation.qml | 2 +- src/qml/presenter/PresentationWindow.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qml/presenter/Presentation.qml b/src/qml/presenter/Presentation.qml index 2395b9b..c263d40 100644 --- a/src/qml/presenter/Presentation.qml +++ b/src/qml/presenter/Presentation.qml @@ -119,12 +119,12 @@ FocusScope { implicitWidth: root.width - 400 > 200 ? root.width - 400 : 200 implicitHeight: width / 16 * 9 anchors.centerIn: parent - textSize: SlideObject.fontSize itemType: SlideObject.ty imageSource: SlideObject.imageBackground videoSource: SlideObject.videoBackground audioSource: SlideObject.audio chosenFont: SlideObject.font + textSize: SlideObject.fontSize text: SlideObject.text pdfIndex: SlideObject.slideIndex vidLoop: SlideObject.looping diff --git a/src/qml/presenter/PresentationWindow.qml b/src/qml/presenter/PresentationWindow.qml index f263e01..a154f3b 100644 --- a/src/qml/presenter/PresentationWindow.qml +++ b/src/qml/presenter/PresentationWindow.qml @@ -42,7 +42,7 @@ Window { textSize: SlideObject.fontSize pdfIndex: SlideObject.pdfIndex itemType: SlideObject.ty - vidLoop: SlideObject.loop + vidLoop: SlideObject.looping } Connections {