mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07: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
1 changed files with 13 additions and 0 deletions
|
|
@ -279,6 +279,19 @@ UM.MainWindow {
|
||||||
configureMachinesAction: actions.configureMachines;
|
configureMachinesAction: actions.configureMachines;
|
||||||
saveAction: actions.save;
|
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…
Add table
Add a link
Reference in a new issue