[TD]Fix CosmeticVertex size

This commit is contained in:
wandererfan
2020-06-09 09:06:26 -04:00
committed by WandererFan
parent 134f5fd340
commit dd0273ff4e
5 changed files with 15 additions and 4 deletions

View File

@@ -137,7 +137,7 @@ CosmeticVertex::CosmeticVertex() : TechDraw::Vertex()
permaPoint = Base::Vector3d(0.0, 0.0, 0.0);
linkGeom = -1;
color = Preferences::vertexColor();
size = 3.0;
size = Preferences::vertexScale();
style = 1;
visible = true;
hlrVisible = true;
@@ -165,8 +165,7 @@ CosmeticVertex::CosmeticVertex(Base::Vector3d loc) : TechDraw::Vertex(loc)
permaPoint = loc;
linkGeom = -1;
color = Preferences::vertexColor();
//TODO: size = hGrp->getFloat("VertexSize",30.0);
size = 30.0;
size = Preferences::vertexScale();
style = 1; //TODO: implement styled vertexes
visible = true;
hlrVisible = true;