From 18d9a43edb4ae7270f415fe6b81f02085ddcaef9 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 16 Apr 2014 10:18:38 -0700 Subject: [PATCH] Cut the opacity of visual tool features in half --- src/visual_tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/visual_tool.cpp b/src/visual_tool.cpp index f5a25dfd1..9a8060192 100644 --- a/src/visual_tool.cpp +++ b/src/visual_tool.cpp @@ -283,7 +283,7 @@ void VisualTool::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); } }