20 lines
350 B
QML
20 lines
350 B
QML
import QtQuick 2.12
|
|
import QtQuick.Shapes 1.12
|
|
|
|
import Utils 1.0
|
|
|
|
Shape {
|
|
id: shape
|
|
implicitHeight: 1
|
|
|
|
ShapePath {
|
|
strokeColor: Palette.contentTextColor
|
|
strokeWidth: 1
|
|
strokeStyle: ShapePath.DashLine
|
|
dashPattern: [1, 3]
|
|
startX: 0
|
|
startY: 0
|
|
PathLine { x: shape.width; y: 0 }
|
|
}
|
|
}
|