Skip to content

Commit

Permalink
Bugfix: Display graph of stat/coherence
Browse files Browse the repository at this point in the history
  • Loading branch information
ftadel committed Feb 23, 2020
1 parent 04f81f0 commit 28b2603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion toolbox/core/bst_figures.m
Expand Up @@ -1921,7 +1921,9 @@ function ReloadFigures(FigureTypes, isFastUpdate, isResetAxes)
case 'Pac'
figure_pac('UpdateFigurePlot', Figure.hFigure);
case 'Connect'
warning('todo: reload figure');
bst_progress('start', 'Connectivity graph', 'Reloading connectivity graph...');
figure_connect('UpdateFigurePlot', Figure.hFigure);
bst_progress('stop');
case 'Image'
% ReloadCall only
case 'Video'
Expand Down
2 changes: 1 addition & 1 deletion toolbox/core/bst_memory.m
Expand Up @@ -2235,7 +2235,7 @@ function LoadResultsMatrix(iDS, iResult)
% => In some cases, one time point can correspond to two time bands
if (length(iTime) == 1) && (length(iTimeBands) > 1)
iTime = iTimeBands(1);
else
elseif ~isempty(iTimeBands)
iTime = iTimeBands;
end
end
Expand Down

0 comments on commit 28b2603

Please sign in to comment.