fixing html slides not working through nextSlideAction()
This commit is contained in:
parent
428386a25b
commit
15c657b81e
3 changed files with 32 additions and 11 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue