1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 14:32:52 -05:00

Add none as a wallpaper transition type

This commit is contained in:
bbedward
2025-09-22 18:57:03 -04:00
parent cf5dec733d
commit 4468e4c6af
3 changed files with 78 additions and 61 deletions

View File

@@ -806,6 +806,7 @@ Item {
description: "Visual effect used when wallpaper changes"
currentValue: {
switch (SessionData.wallpaperTransition) {
case "none": return "None"
case "fade": return "Fade"
case "wipe": return "Wipe"
case "disc": return "Disc"
@@ -816,7 +817,7 @@ Item {
default: return "Fade"
}
}
options: ["Fade", "Wipe", "Disc", "Stripes", "Iris Bloom", "Pixelate", "Portal"]
options: ["None", "Fade", "Wipe", "Disc", "Stripes", "Iris Bloom", "Pixelate", "Portal"]
onValueChanged: value => {
var transition = value.toLowerCase()
SessionData.setWallpaperTransition(transition)