fixing some small code smells

This commit is contained in:
Chris Cochrun 2022-09-19 16:45:58 -05:00
parent 8b9bcd5a89
commit c2c26bddaf
3 changed files with 6 additions and 6 deletions

View file

@ -192,7 +192,7 @@ Controls.Page {
presentation.loadVideo();
print("For window: Screen is: " + pWindow.screen + " And selected screen is: " + presentationScreen);
pWindow.showFullScreen();
pWindow.screen = presentationScreen;
/* pWindow.screen = presentationScreen; */
print("For window: Screen is: " + pWindow.screen + " And selected screen is: " + presentationScreen);
}
else

View file

@ -34,7 +34,7 @@ Window {
id: presentationSlide
anchors.fill: parent
imageSource: SlideObject.imageBackground
videoSource: presentationWindow.visible ? SlideObject.videoBackground : null
videoSource: presentationWindow.visible ? SlideObject.videoBackground : ""
text: SlideObject.text
}