1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

blur: fix blur for goth corners in dankbar

fixes #2666
This commit is contained in:
bbedward
2026-07-02 20:27:42 -04:00
parent 2fade1a617
commit 85fa3326c1
2 changed files with 159 additions and 11 deletions
+3 -1
View File
@@ -340,6 +340,9 @@ Item {
readonly property bool active: widgetLoader.active
readonly property var item: widgetLoader.item
readonly property bool itemVisible: widgetLoader.item?.visible ?? false
onItemVisibleChanged: layoutTimer.restart()
WidgetHost {
id: widgetLoader
@@ -372,7 +375,6 @@ Item {
onContentItemReady: contentItem => {
contentItem.widthChanged.connect(() => layoutTimer.restart());
contentItem.heightChanged.connect(() => layoutTimer.restart());
contentItem.visibleChanged.connect(() => layoutTimer.restart());
layoutTimer.restart();
}