From 934c8c61b3d1382195a06d8e521e0a049b46bcea Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Mon, 1 Sep 2025 11:14:19 -0400 Subject: [PATCH] WallpaperSelector: current wallpaper border is a real border not a huge colored rectangle. looks better when switching wallpaper --- Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml index 88f5da9..8cf41dd 100644 --- a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml +++ b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml @@ -53,7 +53,7 @@ ColumnLayout { Layout.fillWidth: true Layout.preferredHeight: 140 * scaling radius: Style.radiusM * scaling - color: Color.mSecondary + color: Color.transparent NImageRounded { anchors.fill: parent @@ -61,6 +61,8 @@ ColumnLayout { imagePath: currentWallpaper fallbackIcon: "image" imageRadius: Style.radiusM * scaling + borderColor: Color.mSecondary + borderWidth: Style.borderL * 2 * scaling } }