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:
authorj.delarago <joeydelarago@gmail.com>2022-03-04 16:12:11 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-04 16:12:11 +0300
commite1068fb3bc8c798083f0b8678891731c24da71e9 (patch)
tree6a03236bed81129d63d7c5d155d6a9296f9bf25e
parent3c7498feed99d85eb11e4dd859753e3c97a74f28 (diff)
Replace Text.Align with custom enum alignment
CURA-8943
-rw-r--r--plugins/Marketplace/resources/qml/PackageDetails.qml2
-rw-r--r--plugins/PostProcessingPlugin/PostProcessingPlugin.qml2
-rw-r--r--resources/qml/ActionPanel/OutputProcessWidget.qml2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Marketplace/resources/qml/PackageDetails.qml b/plugins/Marketplace/resources/qml/PackageDetails.qml
index 4bf32c53d7..6e5ec0fbf5 100644
--- a/plugins/Marketplace/resources/qml/PackageDetails.qml
+++ b/plugins/Marketplace/resources/qml/PackageDetails.qml
@@ -38,7 +38,7 @@ Item
onClicked: contextStack.pop() //Remove this page, returning to the main package list or whichever thing is beneath it.
tooltip: catalog.i18nc("@button:tooltip", "Back")
- toolTipContentAlignment: Text.AlignRight
+ toolTipContentAlignment: UM.Enums.ContentAlignment.AlignRight
leftPadding: UM.Theme.getSize("narrow_margin").width
rightPadding: leftPadding
iconSource: UM.Theme.getIcon("ArrowLeft")
diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
index 7bb179e8ed..8ce6e3f94f 100644
--- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
+++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml
@@ -479,7 +479,7 @@ UM.Dialog
}
return tipText
}
- toolTipContentAlignment: Text.AlignLeft
+ toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft
onClicked: dialog.show()
iconSource: "Script.svg"
fixedWidthMode: false
diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml
index 13c910d9cc..1303dc20a2 100644
--- a/resources/qml/ActionPanel/OutputProcessWidget.qml
+++ b/resources/qml/ActionPanel/OutputProcessWidget.qml
@@ -128,7 +128,7 @@ Column
tooltip: text
fixedWidthMode: true
- toolTipContentAlignment: Text.AlignLeft
+ toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft
onClicked: UM.Controller.setActiveStage("PreviewStage")
}