From d3cb51bef6c006c2beb64167c2fe3cd1a7fee934 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 11 Jul 2025 01:38:18 -0400 Subject: [PATCH] initialstart: Fix wallpaper path The wallpaper paths changed for Plasma 6.4: https://invent.kde.org/plasma/breeze/-/tree/master/wallpapers/Next/contents?ref_type=heads We really need a more adaptive way to do this in the future... --- initialstart/qml/LandingComponent.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/initialstart/qml/LandingComponent.qml b/initialstart/qml/LandingComponent.qml index 16d76e4f..a908c393 100644 --- a/initialstart/qml/LandingComponent.qml +++ b/initialstart/qml/LandingComponent.qml @@ -44,8 +44,9 @@ Item { readonly property bool isLandscape: width >= height source: { - // default wallpaper background - const imgFile = isLandscape ? '2560x1440.png' : '1080x1920.png'; + // Default wallpaper background + // Needs to be in-sync with breeze/wallpapers/Next/contents/images + const imgFile = isLandscape ? '5120x2880.png' : '1440x2960.png'; const lightWallpaperFolder = 'wallpapers/Next/contents/images/'; const darkWallpaperFolder = 'wallpapers/Next/contents/images_dark/';