Fix review comments in WelcomeContent.qml

CURA-8094
This commit is contained in:
Kostas Karmas 2021-03-25 09:00:14 +01:00
parent d6c1ffdda3
commit 18c0510727

View File

@ -21,18 +21,31 @@ Item
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
spacing: UM.Theme.getSize("thick_margin").height spacing: UM.Theme.getSize("thick_margin").height
// Filler item
Item
{
height: UM.Theme.getSize("thick_margin").width
width: parent.width
}
Image Image
{ {
id: curaImage id: curaImage
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
source: UM.Theme.getImage("first_run_welcome_cura") source: UM.Theme.getImage("first_run_welcome_cura")
scale: 0.666 fillMode: Image.PreserveAspectFit
width: UM.Theme.getSize("welcome_wizard_content_image_big").width
sourceSize.width: width
sourceSize.height: height
} }
Column // Filler item
Item
{ {
anchors.horizontalCenter: parent.horizontalCenter height: UM.Theme.getSize("thick_margin").width
spacing: UM.Theme.getSize("thick_margin").height width: parent.width
}
Label Label
{ {
@ -55,7 +68,6 @@ Item
color: UM.Theme.getColor("text") color: UM.Theme.getColor("text")
renderType: Text.NativeRendering renderType: Text.NativeRendering
} }
}
// Filler item // Filler item
Item Item