Skip to content
Snippets Groups Projects
Verified Commit e043099f authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

fix(filesinput): issue with manual input

parent 896d30ef
No related branches found
No related tags found
No related merge requests found
Pipeline #7106 passed
......@@ -36,6 +36,8 @@ function [filenames, filepaths, idxOpts] = parsefileinputs(optList, filetype, va
ext = ['*', filetype];
[filenames, filepaths] = uigetfile(ext, 'Select all dat-files to aggregate', ...
'MultiSelect', 'on');
filepaths = repmat(string(filepaths), 1, length(filenames));
idxOpts = 1;
else
idxOpts = 2;
......
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