mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-26 03:13:12 +08:00
Display the rotation angle when we are performing a rotation
Contributes to Asana issue 36760525983768
This commit is contained in:
parent
32b47ce192
commit
dfb379dfc8
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user