making slide work regardless of other things

This commit is contained in:
Chris Cochrun 2022-02-10 15:14:43 -06:00
parent f374115513
commit 6e9e1eca0d
10 changed files with 720 additions and 271 deletions

View file

@ -40,13 +40,13 @@ Kirigami.ActionToolBar {
text: "Go Live"
onTriggered: {
print("Window is loading")
presentLoader.active = true
presenting = true
}
},
Kirigami.Action {
icon.name: "sidebar-collapse-right"
text: "Close Library"
icon.name: libraryOpen ? "sidebar-collapse-right" : "sidebar-expand-right"
text: libraryOpen ? "Close Library" : "Open Library"
onTriggered: toggleLibrary()
}