From 07348758f19c049f1f5838fd31a89c5166943cd4 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 6 May 2026 19:34:11 +1000 Subject: [PATCH] fix: dashboard top margin --- modules/dashboard/Tabs.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/dashboard/Tabs.qml b/modules/dashboard/Tabs.qml index 9272ce0e..e67cfd5e 100644 --- a/modules/dashboard/Tabs.qml +++ b/modules/dashboard/Tabs.qml @@ -18,7 +18,7 @@ Item { readonly property alias count: bar.count - implicitHeight: bar.implicitHeight + indicator.implicitHeight + indicator.anchors.topMargin + separator.implicitHeight + implicitHeight: bar.implicitHeight + bar.anchors.topMargin + indicator.implicitHeight + indicator.anchors.topMargin + separator.implicitHeight TabBar { id: bar @@ -26,6 +26,7 @@ Item { anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top + anchors.topMargin: Tokens.sizes.dashboard.tabIndicatorSpacing currentIndex: root.dashState.currentTab onCurrentIndexChanged: root.dashState.currentTab = currentIndex