mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 17:27:51 -06:00
Fix rounded values in qml files
This commit is contained in:
parent
2f37bd4b73
commit
f11a1341ee
4 changed files with 10 additions and 10 deletions
|
@ -22,8 +22,8 @@ UM.Dialog
|
|||
Image
|
||||
{
|
||||
id: logo
|
||||
width: (base.minimumWidth * 0.85) | 0
|
||||
height: (width * (1/4.25)) | 0
|
||||
width: Math.round(base.minimumWidth * 0.85) | 0
|
||||
height: Math.round(width * (1/4.25)) | 0
|
||||
|
||||
source: UM.Theme.getImage("logo")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue