2020-06-17 15:31:01 -04:00
|
|
|
import QtQuick 2.13
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2020-05-27 16:11:56 -04:00
|
|
|
|
2021-03-19 13:32:14 +01:00
|
|
|
Item {
|
2021-03-17 12:31:45 +01:00
|
|
|
id: root
|
2021-04-27 14:02:45 -04:00
|
|
|
property color color: Style.current.separator
|
2021-03-17 12:31:45 +01:00
|
|
|
width: parent.width
|
2022-06-28 14:11:18 -04:00
|
|
|
implicitHeight: 1
|
|
|
|
height: root.visible ? implicitHeight : 0
|
2021-03-17 12:31:45 +01:00
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
Rectangle {
|
2022-09-27 23:26:26 +02:00
|
|
|
id: separator
|
|
|
|
width: parent.width
|
|
|
|
height: 1
|
|
|
|
color: root.color
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2021-03-17 12:31:45 +01:00
|
|
|
}
|
2020-05-29 11:43:37 -04:00
|
|
|
}
|