From 75bf58bfb225ff70ea0c5ca1541046164b5e4085 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 12 May 2023 18:59:36 -0400 Subject: [PATCH] homescreens/halcyon: Fix favorite delegate height It was changed originally to address PlasmaCore.Units.gridUnit having a different value in KF6 master, but it seems it was a bug and was fixed. --- .../homescreens/halcyon/package/contents/ui/FavoritesView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/homescreens/halcyon/package/contents/ui/FavoritesView.qml b/containments/homescreens/halcyon/package/contents/ui/FavoritesView.qml index 07987cd4..5f9113cf 100644 --- a/containments/homescreens/halcyon/package/contents/ui/FavoritesView.qml +++ b/containments/homescreens/halcyon/package/contents/ui/FavoritesView.qml @@ -30,7 +30,7 @@ Item { readonly property real leftMargin: Math.round(width * 0.1) readonly property real rightMargin: Math.round(width * 0.1) - readonly property real delegateHeight: Math.round(PlasmaCore.Units.gridUnit * 3.25) + readonly property real delegateHeight: Math.round(PlasmaCore.Units.gridUnit * 3) property bool folderShown: false