diff --git a/Source/Processors/Visualization/LfpDisplayCanvas.cpp b/Source/Processors/Visualization/LfpDisplayCanvas.cpp index 392240da2fd496ab04104d1aa823c0f8092bafb0..2a905e37f639f3f278a7f594385a9a895db47915 100755 --- a/Source/Processors/Visualization/LfpDisplayCanvas.cpp +++ b/Source/Processors/Visualization/LfpDisplayCanvas.cpp @@ -899,7 +899,7 @@ void LfpChannelDisplay::paint(Graphics& g) if (display->getEventDisplayState(ev_ch)){ // check if plotting for this channel is enabled if ( rawEventState & (1 << ev_ch)){ // events are representet by a bit code, so we have to extract the individual bits with a mask g.setColour(display->channelColours[ev_ch*2]); // get color from lfp color scheme - g.setOpacity(0.25f); + g.setOpacity(0.35f); g.drawLine(i, center-channelHeight/2 , i, center+channelHeight/2); } }