1
0
Fork 0
flightgear/src/GUI/qml/ListHeaderBox.qml
2017-12-15 14:38:23 +00:00

23 lines
439 B
QML

import QtQuick 2.2
import FlightGear.Launcher 1.0 as FG
import "."
Item {
id: root
height: visible ? contentBox.height + (Style.margin * 2) : 0
z: 100
property alias contents: contentBox.children
Rectangle {
id: contentBox
width: parent.width
height: Style.strutSize
y: Style.margin
color: "white"
border.width: 1
border.color: Style.minorFrameColor
}
}