Revert back to expected selection colors

- Issue MatterHackers/MCCentral#5650
Unexpected debugging colors checked in
This commit is contained in:
jlewin 2019-06-06 14:06:18 -07:00
parent feaffd28b5
commit 1251412cd0

View file

@ -198,12 +198,12 @@ namespace MatterHackers.Plugins.EditorTools
{
if (e.ZBuffered)
{
InteractionContext.World.Render3DLine(clippingFrustum, startPosition, endPosition, Color.Green);
InteractionContext.World.Render3DLine(clippingFrustum, startPosition, endPosition, theme.TextColor);
}
else
{
// render on top of everything very lightly
InteractionContext.World.Render3DLine(clippingFrustum, startPosition, endPosition, new Color(Color.Green, 20), false);
InteractionContext.World.Render3DLine(clippingFrustum, startPosition, endPosition, new Color(theme.TextColor, 20), false);
}
}