This commit is contained in:
Ly-sec
2025-11-22 13:52:45 +01:00
parent 74ba883dd8
commit 83d1cbacc7
4 changed files with 2 additions and 5 deletions
-1
View File
@@ -180,4 +180,3 @@ Singleton {
return adapter.wallpapers || {};
}
}
@@ -98,7 +98,6 @@ Popup {
xhr.send();
}
background: Rectangle {
color: Color.mSurface
radius: Style.radiusL
-1
View File
@@ -486,7 +486,6 @@ Singleton {
}
}
Timer {
id: saveTimer
interval: 200
+2 -2
View File
@@ -85,7 +85,7 @@ Singleton {
// Load wallpapers from ShellState first (faster), then fall back to Settings
currentWallpapers = ({});
if (typeof ShellState !== 'undefined' && ShellState.isLoaded) {
var cachedWallpapers = ShellState.getWallpapers();
if (cachedWallpapers && Object.keys(cachedWallpapers).length > 0) {
@@ -113,7 +113,7 @@ Singleton {
}
}
Logger.d("Wallpaper", "Loaded wallpapers from Settings");
// Migrate to ShellState if we loaded from Settings
if (typeof ShellState !== 'undefined' && ShellState.isLoaded && Object.keys(currentWallpapers).length > 0) {
ShellState.setWallpapers(currentWallpapers);