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 /plugins/Marketplace/resources
parent3c7498feed99d85eb11e4dd859753e3c97a74f28 (diff)
Replace Text.Align with custom enum alignment
CURA-8943
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/PackageDetails.qml2
1 files changed, 1 insertions, 1 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")