From 19ee790cd7cdf10706aeb13bfb985fc12c39775c Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 9 May 2017 12:05:01 +0200 Subject: [PATCH] Remove device pixel ratio from DiscardOrKeepProfileChangesDialog --- resources/qml/DiscardOrKeepProfileChangesDialog.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/qml/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/DiscardOrKeepProfileChangesDialog.qml index 06bdb098a0..1cdde17840 100644 --- a/resources/qml/DiscardOrKeepProfileChangesDialog.qml +++ b/resources/qml/DiscardOrKeepProfileChangesDialog.qml @@ -14,8 +14,8 @@ UM.Dialog id: base title: catalog.i18nc("@title:window", "Discard or Keep changes") - width: 800 * Screen.devicePixelRatio - height: 400 * Screen.devicePixelRatio + width: 800 + height: 400 property var changesModel: Cura.UserChangesModel{ id: userChangesModel} onVisibilityChanged: { @@ -71,7 +71,7 @@ UM.Dialog TableView { anchors.fill: parent - height: base.height - 150 * Screen.devicePixelRatio + height: base.height - 150 id: tableView Component {