Apply suggestions from code review

Co-authored-by: Casper Lamboo <c.lamboo@ultimaker.com>
This commit is contained in:
Joey de l'Arago 2022-11-15 13:49:55 +01:00 committed by GitHub
parent 90ce031b27
commit cac9d67352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -21,14 +21,14 @@ Row
{
id: leftLabel
text: catalog.i18nc("@action:label", "Type")
width: (parent.width / 4) | 0
width: Math.round(parent.width / 4)
wrapMode: Text.WordWrap
}
UM.Label
{
id: rightLabel
text: manager.machineType
width: (parent.width / 3) | 0
width: Math.round(parent.width / 3)
wrapMode: Text.WordWrap
}
}