From 83cb60fceb58213611e73dd705d66625543668f4 Mon Sep 17 00:00:00 2001
From: jvoigts <jvoigts@mit.edu>
Date: Tue, 18 Jun 2013 17:10:25 -0400
Subject: [PATCH] Made event markers slightly more visible

---
 Source/Processors/Visualization/LfpDisplayCanvas.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Source/Processors/Visualization/LfpDisplayCanvas.cpp b/Source/Processors/Visualization/LfpDisplayCanvas.cpp
index 392240da2..2a905e37f 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);
                 }
             }
-- 
GitLab