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-03 17:53:30 +0300
committerj.delarago <joeydelarago@gmail.com>2022-03-03 17:53:30 +0300
commit3c7498feed99d85eb11e4dd859753e3c97a74f28 (patch)
treec6124648a3a015791ace79a9aa357a62073cafae /resources/qml/ActionPanel
parent901dc55733bc8c7b7ccc6bcb61059c566a89f841 (diff)
Move ToolbarButton and ToolTip from Cura into Uranium. This makes it possible to use new styled ToolbarButton in plugins/Tools for the rotate tool.
Removed the ContentAlignment enum in ToolTip in favour of using the Text.ContentAlignment enum. For some reason references to this enum fail everywhere when ToolTip is moved into Uranium. There is some evil time-wasting magic cast on this component! CURA-8943
Diffstat (limited to 'resources/qml/ActionPanel')
-rw-r--r--resources/qml/ActionPanel/OutputProcessWidget.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml
index 6e412c9a04..13c910d9cc 100644
--- a/resources/qml/ActionPanel/OutputProcessWidget.qml
+++ b/resources/qml/ActionPanel/OutputProcessWidget.qml
@@ -5,7 +5,7 @@ import QtQuick 2.7
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.3
-import UM 1.1 as UM
+import UM 1.5 as UM
import Cura 1.0 as Cura
@@ -128,7 +128,7 @@ Column
tooltip: text
fixedWidthMode: true
- toolTipContentAlignment: Cura.ToolTip.ContentAlignment.AlignLeft
+ toolTipContentAlignment: Text.AlignLeft
onClicked: UM.Controller.setActiveStage("PreviewStage")
}