From 994e94a5696c691d3f33440fe2bca1e49c1562b6 Mon Sep 17 00:00:00 2001 From: Lemmy Date: Thu, 12 Feb 2026 11:25:09 -0500 Subject: [PATCH] settings: increased padding in sidebar's results --- Modules/Panels/Settings/SettingsContent.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Modules/Panels/Settings/SettingsContent.qml b/Modules/Panels/Settings/SettingsContent.qml index 91e0de1fc..b6d9f8a4b 100644 --- a/Modules/Panels/Settings/SettingsContent.qml +++ b/Modules/Panels/Settings/SettingsContent.qml @@ -940,7 +940,7 @@ Item { delegate: Rectangle { id: resultItem width: searchResultsList.width - (searchResultsList.verticalScrollBarActive ? Style.marginM : 0) - height: resultColumn.implicitHeight + Style.marginS * 2 + height: resultColumn.implicitHeight + Style.marginM * 2 radius: Style.iRadiusS readonly property bool selected: index === root.searchSelectedIndex readonly property bool effectiveHover: !root.ignoreMouseHover && resultMouseArea.containsMouse @@ -957,10 +957,10 @@ Item { ColumnLayout { id: resultColumn anchors.fill: parent - anchors.leftMargin: Style.marginS - anchors.rightMargin: Style.marginS - anchors.topMargin: Style.marginXS - anchors.bottomMargin: Style.marginXS + anchors.leftMargin: Style.marginL + anchors.rightMargin: Style.marginL + anchors.topMargin: Style.marginM + anchors.bottomMargin: Style.marginM spacing: 0 NText {