Set marker color to invisible just to be sure

This commit is contained in:
SiboVG 2023-03-19 13:00:34 +01:00
parent e3c34f197a
commit 40c4e1b70f

View File

@ -45,6 +45,7 @@ public class ComponentAssemblyShapes extends RocketComponentShape {
for (int i = 0; i < shapes.length - 1; i++) {
shapes[i].setColor(color);
}
shapes[shapes.length - 1].setColor(Color.INVISIBLE);
return shapes;
}