mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 22:31:27 +02:00
- images are being copied into the correct directory - scripts are added to fst upon project load - modal overlay fix
25 lines
No EOL
579 B
QML
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;
|
|
}
|
|
|
|
} |