lux-shell/components/StyledTabBar.qml
Benjamin Palko 8fe50936a0 kind of fix tabs for now
its fucked I dont want to deal with it right now
2025-09-18 21:04:08 -04:00

19 lines
397 B
QML

import QtQuick
import QtQuick.Controls
Container {
id: control
property alias orientation: view.orientation
contentItem: ListView {
id: view
model: control.contentModel
currentIndex: control.currentIndex
spacing: control.spacing
orientation: ListView.Horizontal
boundsBehavior: Flickable.StopAtBounds
}
background: Item {}
}