1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 16:02:51 -05:00

hyprland: fix right click overview

This commit is contained in:
bbedward
2025-11-18 17:53:00 -05:00
parent 1c92d39185
commit 6ef9ddd4f3
2 changed files with 3 additions and 2 deletions

View File

@@ -479,7 +479,7 @@ Item {
section: topBarContent.getWidgetSection(parent) section: topBarContent.getWidgetSection(parent)
popoutTarget: appDrawerLoader.item popoutTarget: appDrawerLoader.item
parentScreen: barWindow.screen parentScreen: barWindow.screen
hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null hyprlandOverviewLoader: barWindow ? barWindow.hyprlandOverviewLoader : null
onClicked: { onClicked: {
appDrawerLoader.active = true appDrawerLoader.active = true
if (appDrawerLoader.item && appDrawerLoader.item.setTriggerPosition) { if (appDrawerLoader.item && appDrawerLoader.item.setTriggerPosition) {
@@ -504,7 +504,7 @@ Item {
widgetHeight: barWindow.widgetThickness widgetHeight: barWindow.widgetThickness
barThickness: barWindow.effectiveBarThickness barThickness: barWindow.effectiveBarThickness
parentScreen: barWindow.screen parentScreen: barWindow.screen
hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null hyprlandOverviewLoader: barWindow ? barWindow.hyprlandOverviewLoader : null
} }
} }

View File

@@ -23,6 +23,7 @@ PanelWindow {
required property var rootWindow required property var rootWindow
property var modelData: item property var modelData: item
property var hyprlandOverviewLoader: rootWindow ? rootWindow.hyprlandOverviewLoader : null
property var controlCenterButtonRef: null property var controlCenterButtonRef: null
property var clockButtonRef: null property var clockButtonRef: null