Fix globalDrawer inside loader not showing correctly
Previously if we set globalDrawer: loader.item
the drawer content would have an invisible content (actually the header was somehow visible). Now the drawer works as expected.
globalDrawer: loader.item
Loader {
id: loader
active: true
sourceComponent: GlobalDrawer {
actions: [Kirigami.Action {text: "Hi"}]
}
}