Skip to content

Commit

Permalink
Bug fix: Do not show events from hidden channels
Browse files Browse the repository at this point in the history
  • Loading branch information
ftadel committed Sep 12, 2019
1 parent 38d35fb commit de4e536
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/license.html
Expand Up @@ -3,7 +3,7 @@

</head>
<body alink="#fff000" link="#fff000" vlink="#fff000">
<!-- LICENCE_START -->Version: 3.190911 (11-Sep-2019)<br>
<!-- LICENCE_START -->Version: 3.190912 (12-Sep-2019)<br>
<span style="font-style: italic;">COPYRIGHT &copy; 2000-2019
USC &amp; McGill University.<br>
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/version.txt
@@ -1,2 +1,2 @@
% Brainstorm
% v. 3.190911 (11-Sep-2019)
% v. 3.190912 (12-Sep-2019)
2 changes: 1 addition & 1 deletion toolbox/gui/figure_timeseries.m
Expand Up @@ -4495,7 +4495,7 @@ function PlotEventsDots_EventsBar(hFig)
end
end
iOccChannels = find(~cellfun(@isempty, iLines));
iOccGlobal = find(cellfun(@isempty, iLines));
iOccGlobal = find(cellfun(@isempty, iLines) & cellfun(@isempty, events(iEvt).channels));

% === CHANNEL EVENTS ===
% Where to display the notes and events labels by default
Expand Down

0 comments on commit de4e536

Please sign in to comment.