BaseUI/qml/HorizontalListDivider.qml
Stefano Moretti 11606b8f39 Heavy changes
2023-04-21 18:07:17 +02:00

16 lines
326 B
QML

import QtQuick
import QtQuick.Layouts
// special divider for list elements
// using height 1 ensures that it looks good if highlighted
Item {
height: 1
Layout.fillWidth: true
Rectangle {
width: parent.width
height: 1
opacity: Style.dividerOpacity
color: Style.dividerColor
}
}