From 1ea8145f3957c00d76e57d2e2c6280bf921c95a4 Mon Sep 17 00:00:00 2001 From: Dimitriovski Date: Tue, 31 Dec 2019 14:35:47 +0100 Subject: [PATCH] Changed the hardcoded value for leftMargin CURA-7038 --- plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml b/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml index 5685ddd2b5..f5a20986d1 100644 --- a/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml +++ b/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml @@ -76,7 +76,7 @@ UM.Dialog{ text: model.name font: UM.Theme.getFont("medium_bold") anchors.left: packageIcon.right - anchors.leftMargin: 20 + anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: packageIcon.verticalCenter color: UM.Theme.getColor("text") elide: Text.ElideRight @@ -118,7 +118,7 @@ UM.Dialog{ text: model.name font: UM.Theme.getFont("medium_bold") anchors.left: packageIcon.right - anchors.leftMargin: 20 + anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: packageIcon.verticalCenter color: UM.Theme.getColor("text") elide: Text.ElideRight