From db6439d593bb36d453230b9980689803ce4412d0 Mon Sep 17 00:00:00 2001 From: larsbrubaker Date: Fri, 26 Sep 2014 10:57:11 -0700 Subject: [PATCH] Allow integer rotation.. --- PartPreviewWindow/View3DTransfromPart.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PartPreviewWindow/View3DTransfromPart.cs b/PartPreviewWindow/View3DTransfromPart.cs index d231f39f0..3ba3bcd52 100644 --- a/PartPreviewWindow/View3DTransfromPart.cs +++ b/PartPreviewWindow/View3DTransfromPart.cs @@ -1569,7 +1569,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow degreesContainer.AddChild(degreesLabel); degreesContainer.AddChild(horizontalSpacer); - MHNumberEdit degreesControl = new MHNumberEdit(45, pixelWidth: 40, allowNegatives: true, increment: 5, minValue: -360, maxValue: 360); + MHNumberEdit degreesControl = new MHNumberEdit(45, pixelWidth: 40, allowNegatives: true, allowDecimals: true, increment: 5, minValue: -360, maxValue: 360); degreesControl.VAnchor = Agg.UI.VAnchor.ParentTop; degreesContainer.AddChild(degreesControl); rotateControls.Add(degreesControl);