Fix Brightness (doesn't regenerate colors anymore)

This commit is contained in:
Ly-sec 2025-08-15 14:33:57 +02:00
parent 860a65b9ca
commit 25e4dbcfc1
4 changed files with 22 additions and 4 deletions

View file

@ -39,6 +39,8 @@ Singleton {
}
function setCurrentWallpaper(path, isInitial) {
// Only generate colors if the wallpaper actually changed
var wallpaperChanged = currentWallpaper !== path
currentWallpaper = path
if (!isInitial) {
@ -62,7 +64,10 @@ Singleton {
randomWallpaperTimer.restart()
}
generateColors()
// Only generate colors if the wallpaper actually changed
if (wallpaperChanged) {
generateColors()
}
}
function setRandomWallpaper() {
@ -91,7 +96,9 @@ Singleton {
}
function generateColors() {
console.log("[Wallpapers] generateColors() called, generateColors setting:", Settings.data.wallpaper.generateColors)
if (Settings.data.wallpaper.generateColors) {
console.log("[Wallpapers] Starting color generation process")
generateThemeProcess.running = true
}
}