Trying to get a settings module working

This commit is contained in:
Chris Cochrun 2022-03-11 11:22:11 -06:00
parent 475a0abe3c
commit 9882a0a289
4 changed files with 121 additions and 29 deletions

View file

@ -87,12 +87,17 @@ Controls.Page {
Loader {
id: presentLoader
active: presenting
sourceComponent: Window {
sourceComponent: presentationComponent
}
Component {
id: presentationComponent
Window {
id: presentationWindow
title: "presentation-window"
height: maximumHeight
width: maximumWidth
screen: screens[1].name
screen: screens[0]
onClosing: presenting = false
Component.onCompleted: {
@ -110,6 +115,7 @@ Controls.Page {
Component.onCompleted: slideItem = presentationSlide
}
}
}
FileDialog {