Cut the opacity of visual tool features in half

This commit is contained in:
Thomas Goyne 2014-04-16 10:18:38 -07:00
parent 73c2e92655
commit 18d9a43edb
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ void VisualTool<FeatureType>::DrawAllFeatures() {
fill = 2;
else if (sel_features.count(&feature))
fill = 3;
gl.SetFillColour(colour[fill], 0.6f);
gl.SetFillColour(colour[fill], 0.3f);
feature.Draw(gl);
}
}