1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-13 00:42:49 -05:00

DankBackdrop and resizing control center

This commit is contained in:
bbedward
2025-08-26 22:54:30 -04:00
parent e2df1da5be
commit 21b1d79752
4 changed files with 129 additions and 70 deletions

View File

@@ -247,8 +247,13 @@ Item {
MouseArea {
anchors.fill: parent
visible: wifiContextMenuWindow.visible
onClicked: {
propagateComposedEvents: true
onClicked: function(mouse) {
wifiContextMenuWindow.hide()
mouse.accepted = false
}
onWheel: function(wheel) {
wheel.accepted = false
}
MouseArea {
@@ -256,8 +261,8 @@ Item {
y: wifiContextMenuWindow.y
width: wifiContextMenuWindow.width
height: wifiContextMenuWindow.height
onClicked: {
onClicked: function(mouse) {
mouse.accepted = true
}
}
}