17 lines
490 B
QML
17 lines
490 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12 as QuickControls
|
|
|
|
import Utils 1.0
|
|
|
|
QuickControls.ToolSeparator {
|
|
padding: vertical ? Ui.scale(10) : Ui.scale(2)
|
|
topPadding: vertical ? Ui.scale(2) : Ui.scale(10)
|
|
bottomPadding: vertical ? Ui.scale(2) : Ui.scale(10)
|
|
|
|
contentItem: Rectangle {
|
|
implicitWidth: parent.vertical ? Ui.scale(1) : Ui.scale(24)
|
|
implicitHeight: parent.vertical ? Ui.scale(24) : Ui.scale(1)
|
|
color: Palette.separatorColor
|
|
}
|
|
}
|