Skip to content

Commit

Permalink
Merge pull request #509 from HJZollner/develop
Browse files Browse the repository at this point in the history
Minor Bug fixes in various functions
  • Loading branch information
HJZollner authored Aug 23, 2022
2 parents 259512f + d8e3442 commit 7a2e1fe
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions GUI/osp_iniOverviewWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,7 @@ function osp_iniOverviewWindow(gui)
[temp] = osp_plotScatter(MRSCont, MRSCont.overview.FitSpecNamesStruct.(FitNames{1}){1,1}, gui.quant.Names.Quants{gui.quant.Selected.Quant},MRSCont.quantify.names.(gui.quant.Names.Model{gui.quant.Selected.Model}){gui.overview.Selected.Metab},MRSCont.QM{1,gui.controls.act_x}.SNR.A(1,:,1)',gui.overview.Names.QM{gui.overview.Selected.Corr},1);
end
ViewAxes = gca();
drawnow
set(ViewAxes, 'Parent', gui.Plot.corrOv);
set(gui.Plot.corrOv,'Heights', [-0.1 -0.87 -0.03]);
gui.Plot.corrOv.Children(3).Legend.Location = 'North';
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion overview/OspreyOverview.m
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@
name = statFile.Properties.VariableNames;
end
if isfield(MRSCont, 'exclude') % If exclusions found in MRSCont, add to the table
exclude = zeros(MRSCont.nDatasets,1);
exclude = zeros(MRSCont.nDatasets(1),1);
exclude(MRSCont.exclude) = 1;
statFile.exclude = exclude;
end
Expand Down

0 comments on commit 7a2e1fe

Please sign in to comment.