Skip to content

Commit 14908cf

Browse files
committed
Update projection image color transparency in Spike Viewer
1 parent 099d5eb commit 14908cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Plugins/SpikeViewer/SpikePlots.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ void ProjectionAxes::updateProjectionImage (float x, float y, float gain, Colour
10481048
float xf = x;
10491049
float yf = float (imageDim) - y; // in microvolts
10501050

1051-
g.setColour (col);
1051+
g.setColour (col.withAlpha (0.25f));
10521052
g.fillEllipse (xf, yf, 2.0f, 2.0f);
10531053
}
10541054
}

0 commit comments

Comments
 (0)