Skip to content
Snippets Groups Projects
Commit ce5af1f4 authored by Christophe Bradley Smith's avatar Christophe Bradley Smith
Browse files

Fixed object reference in TransferLabels function.

parent 591c3ab7
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ for iTrial = 1:nTrials
% Set sublabel Values
subLabelList = split(strtrim(extract(labelDefinitionsHierarchy(lss), regexpPattern('(?<=Sublabels:).*'))));
for curLabel = subLabelList'
setLabelValue(lss, iTrial, ["Words", string(curLabel)], lss.Labels.Words{1}.Sublabels.(curLabel{1}), 'LabelRowIndex', 1)
setLabelValue(lss, iTrial, ["Words", string(curLabel)], ls.Labels.Words{1}.Sublabels.(curLabel{1}), 'LabelRowIndex', 1)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment