1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-26 21:15:18 -04:00

fix(WindowBlur): ensure blurRegion is cleared if BackgroundEffect exists

This commit is contained in:
purian23
2026-06-25 12:56:21 -04:00
parent 92994061da
commit cde0d83620
+1 -1
View File
@@ -110,7 +110,7 @@ Item {
Component.onCompleted: _scheduleLifecycleKick() Component.onCompleted: _scheduleLifecycleKick()
Component.onDestruction: { Component.onDestruction: {
lifecycleKickAction.cancel(); lifecycleKickAction.cancel();
if (targetWindow) if (targetWindow && targetWindow.BackgroundEffect)
targetWindow.BackgroundEffect.blurRegion = null; targetWindow.BackgroundEffect.blurRegion = null;
} }
} }