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

fix(wallpaper): redraw wallpaper layers when fill mode changes (#2542)

This commit is contained in:
jbwfu
2026-06-01 22:36:50 +08:00
committed by GitHub
parent e51ceed175
commit a9845bf3cd
2 changed files with 13 additions and 0 deletions
@@ -126,6 +126,14 @@ Variants {
} }
} }
Connections {
target: SettingsData
function onWallpaperFillModeChanged() {
root._renderSettling = true;
renderSettleTimer.restart();
}
}
Timer { Timer {
id: renderSettleTimer id: renderSettleTimer
interval: 1000 interval: 1000
@@ -161,6 +161,11 @@ Variants {
root._overviewBlurSettling = true; root._overviewBlurSettling = true;
overviewBlurSettleTimer.restart(); overviewBlurSettleTimer.restart();
} }
function onWallpaperFillModeChanged() {
root._renderSettling = true;
renderSettleTimer.restart();
}
} }
Connections { Connections {