Don't attempt to change globaldrawer properties if it's not loaded yet

This commit is contained in:
Bart De Vries 2021-12-17 11:11:17 +01:00
parent 91aa415908
commit 3aa45e555a
1 changed files with 8 additions and 6 deletions

View File

@ -40,6 +40,7 @@ Kirigami.ApplicationWindow {
} }
function changeNavigation(isNarrow) { function changeNavigation(isNarrow) {
if (globalDrawer) {
if (isNarrow) { if (isNarrow) {
globalDrawer.collapsed = true globalDrawer.collapsed = true
globalDrawer.width = Layout.implicitWidth globalDrawer.width = Layout.implicitWidth
@ -48,6 +49,7 @@ Kirigami.ApplicationWindow {
globalDrawer.width = originalWidth globalDrawer.width = originalWidth
} }
} }
}
function getPage(page) { function getPage(page) {
switch (page) { switch (page) {