2026-02-21 16:25:53 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
|
2026-02-20 13:36:08 +01:00
|
|
|
ButtonContainer {
|
2026-02-21 16:25:53 +01:00
|
|
|
id: root
|
2026-02-20 13:36:08 +01:00
|
|
|
separatorColor: constants.darkerDialogBackground
|
2026-02-21 16:25:53 +01:00
|
|
|
background: Rectangle {
|
|
|
|
|
color: "transparent"
|
|
|
|
|
}
|
|
|
|
|
headerComponent: Component {
|
|
|
|
|
Rectangle {
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.preferredHeight: 2
|
|
|
|
|
Layout.leftMargin: constants.paddingSmall
|
|
|
|
|
Layout.rightMargin: constants.paddingSmall
|
|
|
|
|
color: root.separatorColor
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-20 13:36:08 +01:00
|
|
|
}
|