Merge pull request #624 from Ultimaker/fast_advanced_switch

Fast Simple<->Advanced Switch
This commit is contained in:
Jaime van Kessel 2016-02-01 10:48:27 +01:00
commit d68e17c9f5
4 changed files with 48 additions and 21 deletions

View file

@ -473,7 +473,7 @@ UM.MainWindow
height: childrenRect.height;
Label
{
text: UM.ActiveTool.properties.Rotation != undefined ? "%1°".arg(UM.ActiveTool.properties.Rotation) : "";
text: UM.ActiveTool.properties.getValue("Rotation") != undefined ? "%1°".arg(UM.ActiveTool.properties.Rotation) : "";
}
visible: UM.ActiveTool.valid && UM.ActiveTool.properties.Rotation != undefined;