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

@ -11,8 +11,8 @@ import UM 1.1 as UM
UM.Dialog
{
id: base
minimumWidth: Math.round(UM.Theme.getSize("modal_window_minimum").width * 0.75) | 0
minimumHeight: Math.round(UM.Theme.getSize("modal_window_minimum").height * 0.75) | 0
minimumWidth: (UM.Theme.getSize("modal_window_minimum").width * 0.75) | 0
minimumHeight: (UM.Theme.getSize("modal_window_minimum").height * 0.75) | 0
width: minimumWidth
height: minimumHeight
title: catalog.i18nc("@label", "Changelog")