fixing html slides not working through nextSlideAction()

This commit is contained in:
Chris Cochrun 2024-03-29 07:30:07 -05:00
parent 428386a25b
commit 15c657b81e
3 changed files with 32 additions and 11 deletions

View file

@ -150,6 +150,7 @@ FocusScope {
}
RowLayout {
id: videoControls
spacing: 2
width: previewSlide.width
/* Layout.alignment: Qt.AlignHCenter, Qt.AlignTop */
@ -188,6 +189,23 @@ FocusScope {
}
}
RowLayout {
id: htmlControls
spacing: 2
width: previewSlide.width
/* Layout.alignment: Qt.AlignHCenter, Qt.AlignTop */
anchors.top: previewSlide.bottom
anchors.topMargin: 10
anchors.horizontalCenter: previewSlide.horizontalCenter
/* Layout.columnSpan: 3 */
visible: SlideObject.imageBackground.startsWith("html");
Controls.Label {
Layout.fillWidth: true
Layout.preferredHeight: 25
text: SlideObject.innerSlideIndex + "/" + SlideObject.slideSize
}
}
}
Presenter.SlidesListView {