From 6dfac6d9af4b9f85d70f5e9826b701fc196c5d65 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Wed, 29 Jul 2020 16:08:15 -0600 Subject: [PATCH] [applets/systemtray] Very slightly increase margins for small icon size BUG: 424711 FIXED-IN: 5.20 --- applets/systemtray/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml index b18a8507c..0437bc596 100644 --- a/applets/systemtray/package/contents/ui/main.qml +++ b/applets/systemtray/package/contents/ui/main.qml @@ -161,7 +161,7 @@ MouseArea { } } readonly property int autoSizeCellLength: thickness / rowsOrColumns - readonly property int smallSizeCellLength: root.smallIconSize + units.smallSpacing + readonly property int smallSizeCellLength: root.smallIconSize + units.smallSpacing * 2 readonly property int totalLength: root.vertical ? cellHeight * Math.round(count / rowsOrColumns) : cellWidth * Math.round(count / rowsOrColumns)