diff --git a/quickshell/Modules/DankBar/DankBarContent.qml b/quickshell/Modules/DankBar/DankBarContent.qml index a789ce02..d98c9e54 100644 --- a/quickshell/Modules/DankBar/DankBarContent.qml +++ b/quickshell/Modules/DankBar/DankBarContent.qml @@ -479,7 +479,7 @@ Item { section: topBarContent.getWidgetSection(parent) popoutTarget: appDrawerLoader.item parentScreen: barWindow.screen - hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null + hyprlandOverviewLoader: barWindow ? barWindow.hyprlandOverviewLoader : null onClicked: { appDrawerLoader.active = true if (appDrawerLoader.item && appDrawerLoader.item.setTriggerPosition) { @@ -504,7 +504,7 @@ Item { widgetHeight: barWindow.widgetThickness barThickness: barWindow.effectiveBarThickness parentScreen: barWindow.screen - hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null + hyprlandOverviewLoader: barWindow ? barWindow.hyprlandOverviewLoader : null } } diff --git a/quickshell/Modules/DankBar/DankBarWindow.qml b/quickshell/Modules/DankBar/DankBarWindow.qml index 0e47bc95..b8747640 100644 --- a/quickshell/Modules/DankBar/DankBarWindow.qml +++ b/quickshell/Modules/DankBar/DankBarWindow.qml @@ -23,6 +23,7 @@ PanelWindow { required property var rootWindow property var modelData: item + property var hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null property var controlCenterButtonRef: null property var clockButtonRef: null