From b0d9342e1d6e9311986996d32b2da5735e0177d4 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Mon, 15 Sep 2025 22:04:46 -0400 Subject: [PATCH] forward control spacing --- components/StyledTabBar.qml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/StyledTabBar.qml b/components/StyledTabBar.qml index 3c0b933..c81c935 100644 --- a/components/StyledTabBar.qml +++ b/components/StyledTabBar.qml @@ -1,4 +1,3 @@ -import qs.config import QtQuick import QtQuick.Controls.Basic @@ -11,10 +10,10 @@ TabBar { id: view model: control.contentModel currentIndex: control.currentIndex + spacing: control.spacing orientation: ListView.Horizontal boundsBehavior: Flickable.StopAtBounds } - background: Rectangle { - color: Styling.theme.base200 - } + + background: Item {} }