Revert "Fix rounded values in qml files"

This reverts commit f11a1341ee.
This commit is contained in:
Diego Prado Gesto 2018-02-15 14:58:58 +01:00
parent e7df8efe4d
commit a2fde9f5f2
4 changed files with 10 additions and 10 deletions

View file

@ -51,14 +51,14 @@ Tab
{
role: "label"
title: catalog.i18nc("@title:column", "Setting")
width: Math.round(parent.width * 0.4) | 0
width: (parent.width * 0.4) | 0
delegate: itemDelegate
}
TableViewColumn
{
role: "profile_value"
title: catalog.i18nc("@title:column", "Profile")
width: Math.round(parent.width * 0.18) | 0
width: (parent.width * 0.18) | 0
delegate: itemDelegate
}
TableViewColumn
@ -66,14 +66,14 @@ Tab
role: "user_value"
title: catalog.i18nc("@title:column", "Current");
visible: quality == Cura.MachineManager.globalQualityId
width: Math.round(parent.width * 0.18) | 0
width: (parent.width * 0.18) | 0
delegate: itemDelegate
}
TableViewColumn
{
role: "unit"
title: catalog.i18nc("@title:column", "Unit")
width: Math.round(parent.width * 0.14) | 0
width: (parent.width * 0.14) | 0
delegate: itemDelegate
}