1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-28 23:42:51 -05:00

meta: large-scale refactor progress

This commit is contained in:
bbedward
2025-07-17 15:21:37 -04:00
parent 77cc9c288b
commit 7a40156893
24 changed files with 663 additions and 590 deletions

View File

@@ -8,10 +8,9 @@ import qs.Common
import qs.Services
PanelWindow {
id: notificationHistoryPopup
id: root
property bool notificationHistoryVisible: false
signal closeRequested()
visible: notificationHistoryVisible
@@ -35,7 +34,7 @@ PanelWindow {
MouseArea {
anchors.fill: parent
onClicked: {
closeRequested()
notificationHistoryVisible = false
}
}
@@ -53,7 +52,7 @@ PanelWindow {
transform: [
Scale {
id: scaleTransform
origin.x: parent.width
origin.x: 400 // Use fixed width since popup is 400px wide
origin.y: 0
xScale: notificationHistoryVisible ? 1.0 : 0.95
yScale: notificationHistoryVisible ? 1.0 : 0.8