From 2a68d79422c9e8381596bcdc526c7f15146560b1 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 23 Jun 2025 19:36:00 +1000 Subject: wallpapers: only preview dynamic if current Don't preview dynamic colour scheme in wallpaper picker when the current scheme isnt set to the dynamic scheme --- services/Wallpapers.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/Wallpapers.qml b/services/Wallpapers.qml index 15424b7..4bce290 100644 --- a/services/Wallpapers.qml +++ b/services/Wallpapers.qml @@ -42,7 +42,9 @@ Singleton { function preview(path: string): void { previewPath = path; showPreview = true; - getPreviewColoursProc.running = true; + + if (Colours.scheme === "dynamic") + getPreviewColoursProc.running = true; } function stopPreview(): void { -- cgit v1.2.3-freya