mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 18:05:55 +08:00
Fix review comments in WelcomeContent.qml
CURA-8094
This commit is contained in:
parent
d6c1ffdda3
commit
18c0510727
@ -21,40 +21,52 @@ 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
|
||||||
{
|
{
|
||||||
|
height: UM.Theme.getSize("thick_margin").width
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
id: titleLabel
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
spacing: UM.Theme.getSize("thick_margin").height
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
text: catalog.i18nc("@label", "Welcome to Ultimaker Cura")
|
||||||
|
color: UM.Theme.getColor("primary_button")
|
||||||
|
font: UM.Theme.getFont("huge_bold")
|
||||||
|
renderType: Text.NativeRendering
|
||||||
|
}
|
||||||
|
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
id: titleLabel
|
id: textLabel
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: catalog.i18nc("@label", "Welcome to Ultimaker Cura")
|
text: catalog.i18nc("@text", "Please follow these steps to set up Ultimaker Cura.\nThis will only take a few moments.")
|
||||||
color: UM.Theme.getColor("primary_button")
|
font: UM.Theme.getFont("medium")
|
||||||
font: UM.Theme.getFont("huge_bold")
|
color: UM.Theme.getColor("text")
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
}
|
|
||||||
|
|
||||||
Label
|
|
||||||
{
|
|
||||||
id: textLabel
|
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
text: catalog.i18nc("@text", "Please follow these steps to set up Ultimaker Cura.\nThis will only take a few moments.")
|
|
||||||
font: UM.Theme.getFont("medium")
|
|
||||||
color: UM.Theme.getColor("text")
|
|
||||||
renderType: Text.NativeRendering
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Filler item
|
// Filler item
|
||||||
|
Loading…
x
Reference in New Issue
Block a user