From 2867f038404703e4e26fed59dec283ee3d1203d9 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 3 Feb 2016 14:30:00 +0100 Subject: [PATCH] Fixes rotation hint CURA-816 --- resources/qml/Cura.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index a5a4968b6f..b8db22eee4 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -473,7 +473,7 @@ UM.MainWindow height: childrenRect.height; Label { - text: UM.ActiveTool.properties.getValue("Rotation") != undefined ? "%1°".arg(UM.ActiveTool.properties.Rotation) : ""; + text: UM.ActiveTool.properties.getValue("Rotation") != undefined ? "%1°".arg(UM.ActiveTool.properties.getValue("Rotation")) : ""; } visible: UM.ActiveTool.valid && UM.ActiveTool.properties.Rotation != undefined;