disable new height translation for release until done

This commit is contained in:
LarsBrubaker 2020-10-24 21:43:27 -07:00
parent 99e3b0934a
commit 1a6e1b41b1

View file

@ -179,7 +179,12 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
// add default controls
if (selectedItem is IObjectWithHeight heightObject)
{
// When this is ready make the debug behavior the only behavior
#if DEBUG
Object3DControls.Add(new ScaleHeightControl(this));
#else
Object3DControls.Add(new ScaleMatrixTopControl(this));
#endif
}
else
{