Skip to content

Commit

Permalink
Merge pull request #191 from sreekanthkura7/development
Browse files Browse the repository at this point in the history
fix plotprob2 bugs 1)typo 2)conditions mismatch error
  • Loading branch information
dboas authored Dec 18, 2023
2 parents db2ccc1 + 0a07326 commit 7ac6ce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MainGUI/MainGUI.m
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ function menuItemPlotProbeGUI_Callback(hObject, ~, handles)
LaunchChildGuiFromMenu('PlotProbeGUI', hObject, GetDatatype(handles), maingui.condition);

% --------------------------------------------------------------------
function menuItemPlotProbe2_Callback(hObject, ~, handles)
function menuItemPlotProbe2GUI_Callback(hObject, ~, handles)
global maingui
procElem = maingui.dataTree.currElem;
% Derived data that we want to save in a Snirf file.
Expand Down Expand Up @@ -917,7 +917,7 @@ function menuItemPlotProbe2_Callback(hObject, ~, handles)
maingui.dataTree.LoadCurrElem()
end
probe = procElem.acquired.probe;
stim = procElem.acquired.stim;
stim = procElem.procStream.input.acquired.stim;
metaDataTags = procElem.acquired.metaDataTags;

obj = SnirfClass(data, stim, probe, metaDataTags);
Expand Down

0 comments on commit 7ac6ce9

Please sign in to comment.