overte-HifiExperiments/interface/resources/qml/hifi/avatarPackager/AvatarPackagerFooter.qml
Thijs Wenker ad2d9bc79a - fst read/write should work
- images are being copied into the correct directory
- scripts are added to fst upon project load
- modal overlay fix
2018-12-21 19:34:54 +01:00

25 lines
No EOL
579 B
QML

import QtQuick 2.6
import "../../controlsUit" 1.0 as HifiControls
import "../../stylesUit" 1.0
Rectangle {
id: avatarPackagerFooter
color: "#404040"
height: content === defaultContent ? 0 : 74
visible: content !== defaultContent
width: parent.width
property var content: Item { id: defaultContent }
children: [background, content]
property var background: Rectangle {
anchors.fill: parent
color: "#404040"
// TODO Use a shadow instead / border is just here for element debug purposes
border.width: 2;
}
}