Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ft_sourceplot info axis #2220

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion ft_sourceplot.m
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ function cb_redraw(h, eventdata)
end

if ~((opt.hasfreq && numel(functional.freq)>1) || opt.hastime)
ht = subplot('position',[0.06+0.06+opt.h1size(1) 0.06 opt.h2size(1) opt.h3size(2)]);
ht = axes('position',[0.06+0.06+opt.h1size(1) 0.06 opt.h2size(1) opt.h3size(2)]);
set(ht, 'visible', 'off');
if opt.init
opt.ht0 = text(ht, 0, 0.7, str0);
Expand Down