Display the rotation angle when we are performing a rotation

Contributes to Asana issue 36760525983768
This commit is contained in:
Arjen Hiemstra 2015-06-19 11:58:24 +02:00
parent 32b47ce192
commit dfb379dfc8

View File

@ -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;
}
}
}