mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 21:58:01 -06:00
Replace Text.Align with custom enum alignment
CURA-8943
This commit is contained in:
parent
3c7498feed
commit
e1068fb3bc
3 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ Item
|
||||||
onClicked: contextStack.pop() //Remove this page, returning to the main package list or whichever thing is beneath it.
|
onClicked: contextStack.pop() //Remove this page, returning to the main package list or whichever thing is beneath it.
|
||||||
|
|
||||||
tooltip: catalog.i18nc("@button:tooltip", "Back")
|
tooltip: catalog.i18nc("@button:tooltip", "Back")
|
||||||
toolTipContentAlignment: Text.AlignRight
|
toolTipContentAlignment: UM.Enums.ContentAlignment.AlignRight
|
||||||
leftPadding: UM.Theme.getSize("narrow_margin").width
|
leftPadding: UM.Theme.getSize("narrow_margin").width
|
||||||
rightPadding: leftPadding
|
rightPadding: leftPadding
|
||||||
iconSource: UM.Theme.getIcon("ArrowLeft")
|
iconSource: UM.Theme.getIcon("ArrowLeft")
|
||||||
|
|
|
@ -479,7 +479,7 @@ UM.Dialog
|
||||||
}
|
}
|
||||||
return tipText
|
return tipText
|
||||||
}
|
}
|
||||||
toolTipContentAlignment: Text.AlignLeft
|
toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft
|
||||||
onClicked: dialog.show()
|
onClicked: dialog.show()
|
||||||
iconSource: "Script.svg"
|
iconSource: "Script.svg"
|
||||||
fixedWidthMode: false
|
fixedWidthMode: false
|
||||||
|
|
|
@ -128,7 +128,7 @@ Column
|
||||||
tooltip: text
|
tooltip: text
|
||||||
fixedWidthMode: true
|
fixedWidthMode: true
|
||||||
|
|
||||||
toolTipContentAlignment: Text.AlignLeft
|
toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft
|
||||||
|
|
||||||
onClicked: UM.Controller.setActiveStage("PreviewStage")
|
onClicked: UM.Controller.setActiveStage("PreviewStage")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue