Skip to content

Fix globalDrawer inside loader not showing correctly

Jack Hill requested to merge jackh/kirigami:global-drawer into master

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"}]
    }
}

BUG: 473214

Merge request reports