Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2019-04-04 16:58:58 +0300
committerLipu Fei <lipu.fei815@gmail.com>2019-04-05 10:09:00 +0300
commit945fa359467109aadb29c808d573ac1ff505f2df (patch)
tree306e9a6f60c34ec97fba27d83a6cf3796bc5fe60 /plugins/UltimakerMachineActions
parenta18bb9d95383e192aed5c2c95ada6d73c8f7b8ff (diff)
Fix incorrect reference in UM2UpgradeSelectionMachineAction
CURA-6435
Diffstat (limited to 'plugins/UltimakerMachineActions')
-rw-r--r--plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml b/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml
index 69023d3432..0aef5e08e1 100644
--- a/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml
+++ b/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml
@@ -23,11 +23,11 @@ Cura.MachineAction
Label
{
id: pageDescription
- anchors.top: pageTitle.bottom
+ anchors.top: parent.top
anchors.topMargin: UM.Theme.getSize("default_margin").height
width: parent.width
wrapMode: Text.WordWrap
- text: catalog.i18nc("@label","Please select any upgrades made to this Ultimaker 2.")
+ text: catalog.i18nc("@label", "Please select any upgrades made to this Ultimaker 2.")
font: UM.Theme.getFont("medium")
renderType: Text.NativeRendering
}