Disallow model selection in GCode views

- Issue MatterHackers/MatterControl#3148
After deleting obj in GCode view, model stays visually (kinda confusing?)
This commit is contained in:
John Lewin 2018-05-10 17:14:54 -07:00
parent d7863651e8
commit 664b736f66
2 changed files with 2 additions and 6 deletions

View file

@ -27,8 +27,6 @@ of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using System.Diagnostics;
using System.IO;
using MatterHackers.Agg;
using MatterHackers.Agg.UI;
@ -38,7 +36,6 @@ namespace MatterHackers.MatterControl
using System.Threading;
using MatterHackers.Agg.Platform;
using MatterHackers.DataConverters3D;
using MatterHackers.MatterControl.PartPreviewWindow;
using MatterHackers.PolygonMesh;
using MatterHackers.RenderOpenGl;
using MatterHackers.VectorMath;
@ -47,8 +44,6 @@ namespace MatterHackers.MatterControl
{
public Color MeshColor { get; set; } = Color.White;
public float[] AmbientColor { get; set; } = new float[] { 0, 0, 0, 0 };
public bool SpinLogo { get; set; } = true;
public LogoSpinner(GuiWidget widget, double scale = 1.6, double spinSpeed = 0.6, double yOffset = 0.5, double rotateX = -0.1)