1
0
Fork 0
flightgear/src/GUI/qml/ListHeaderBox.qml

24 lines
439 B
QML
Raw Normal View History

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