Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml
Ghostkeeper 7f11142d50
Fix height and vertical layout of popup
Many things were made simpler. This took some time to fix...

Contributes to issue CURA-5876.
2018-11-22 14:57:55 +01:00

29 lines
No EOL
583 B
QML

// Copyright (c) 2018 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import QtQuick.Controls 2.0
import UM 1.3 as UM
Item
{
width: parent.width
height: visible ? childrenRect.height : 0
Label
{
id: header
text: catalog.i18nc("@header", "Configurations")
font: UM.Theme.getFont("large")
color: UM.Theme.getColor("text")
height: contentHeight
anchors
{
top: parent.top
left: parent.left
right: parent.right
}
}
}