kind of fix tabs for now

its fucked I dont want to deal with it right now
This commit is contained in:
Benjamin Palko 2025-09-18 21:04:08 -04:00
parent 450ff7a503
commit 8fe50936a0
4 changed files with 13 additions and 3 deletions

View file

@ -1,3 +1,5 @@
pragma ComponentBehavior: Bound
import qs.components
import qs.config
import qs.services
@ -20,7 +22,7 @@ StyledPanelWindow {
Visibility.configuration = focused;
}
GridLayout {
RowLayout {
anchors.fill: parent
@ -40,6 +42,8 @@ StyledPanelWindow {
required property ConfigurationView modelData
anchors.left: parent.left
anchors.right: parent.right
required property int index
contentItem: RowLayout {
states: [
State {
@ -62,6 +66,8 @@ StyledPanelWindow {
}
}
text: tabButton.modelData.title
onClicked: tabs.setCurrentIndex(index)
}
}
}