Fix rounded values in qml files

This commit is contained in:
Diego Prado Gesto 2018-02-15 13:27:13 +01:00
parent 2f37bd4b73
commit f11a1341ee
4 changed files with 10 additions and 10 deletions

View file

@ -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")