diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 5c6a5c9290..830470c9c6 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -279,6 +279,19 @@ UM.MainWindow { configureMachinesAction: actions.configureMachines; saveAction: actions.save; } + + Rectangle { + x: base.mouseX; + y: base.mouseY; + + width: childrenRect.width; + height: childrenRect.height; + Label { + text: UM.ActiveTool.properties.Rotation != undefined ? "%1°".arg(UM.ActiveTool.properties.Rotation) : ""; + } + + visible: UM.ActiveTool.valid && UM.ActiveTool.properties.Rotation != undefined; + } } }