From e9a439599f802093a30ec9ebe6cba33ec6c6b5fd Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 7 Jun 2026 17:05:22 +1000 Subject: [PATCH] fix: add extra bottom padding to slider rows Cause handle is not counted as part of height, so add extra padding to bottom so it looks better --- modules/nexus/common/SliderRow.qml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/nexus/common/SliderRow.qml b/modules/nexus/common/SliderRow.qml index 4fa08534..21cbe545 100644 --- a/modules/nexus/common/SliderRow.qml +++ b/modules/nexus/common/SliderRow.qml @@ -18,15 +18,14 @@ ConnectedRect { signal moved(value: real) - implicitHeight: rowLayout.implicitHeight + rowLayout.anchors.margins * 2 + implicitHeight: rowLayout.implicitHeight + rowLayout.anchors.margins + rowLayout.anchors.topMargin RowLayout { id: rowLayout anchors.fill: parent - anchors.margins: Tokens.padding.large - anchors.leftMargin: Tokens.padding.largeIncreased - anchors.rightMargin: Tokens.padding.largeIncreased + anchors.margins: Tokens.padding.largeIncreased + anchors.topMargin: Tokens.padding.large spacing: Tokens.spacing.medium MaterialIcon {