mirror of https://github.com/cutefishos/fishui
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
463 B
QML
20 lines
463 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Templates 2.12 as T
|
|
import FishUI 1.0 as FishUI
|
|
|
|
T.MenuSeparator {
|
|
id: control
|
|
|
|
implicitHeight: FishUI.Units.smallSpacing + separator.height
|
|
width: parent.width
|
|
|
|
background: Rectangle {
|
|
id: separator
|
|
anchors.centerIn: control
|
|
width: control.width - FishUI.Units.largeSpacing
|
|
height: 1
|
|
color: FishUI.Theme.textColor
|
|
opacity: 0.3
|
|
}
|
|
} |