1
0
Fork 0
flightgear/src/GUI/qml/MenuDivider.qml
2018-06-26 17:13:28 +01:00

13 lines
No EOL
219 B
QML

import QtQuick 2.4
import "."
BaseMenuItem {
height: 3
Rectangle {
x: Style.margin
y: 1
width: parent.width - (2 * Style.margin)
height: 1
color: Style.themeColor
}
}