fixing html visibility in live mode
This commit is contained in:
parent
e80f0216ae
commit
ffb4da1432
2 changed files with 4 additions and 4 deletions
|
@ -49,9 +49,9 @@ Item {
|
|||
Presenter.Slide {
|
||||
id: presentationSlide
|
||||
anchors.fill: parent
|
||||
imageSource: SlideObj.imageBackground
|
||||
webSource: SlideObj.html
|
||||
htmlVisible: SlideObj.html.endsWith(".html")
|
||||
imageSource: SlideObj.imageBackground.endsWith(".html") ? "" : SlideObj.imageBackground
|
||||
webSource: SlideObj.imageBackground.endsWith(".html") ? SlideObj.imageBackground : ""
|
||||
htmlVisible: SlideObj.imageBackground.endsWith(".html")
|
||||
videoSource: presentationWindow.visible ? SlideObj.videoBackground : ""
|
||||
audioSource: SlideObj.audio
|
||||
text: SlideObj.text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue