Skip to content

Commit 00ea022

Browse files
authored
Fixes Json conversion issues and custom file bug (#423)
1 parent 24030ee commit 00ea022

27 files changed

+46
-12
lines changed

API/projectClass/customFileClass.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,11 @@ function displayTable(obj)
270270
% -------
271271
% fileStruct : struct
272272
% A struct which contains the properties for all the custom files.
273-
fileStruct.files = cell(1, 0);
273+
fileStruct.files = cell(0, 1);
274274
fileStruct.fileIdentifiers = {};
275275
numberOfFiles = obj.rowCount;
276276
if numberOfFiles > 0
277-
filesList = cell(numberOfFiles, 1);
277+
filesList = cell(1, numberOfFiles);
278278
for i = 1:numberOfFiles
279279
thisRow = obj.varTable{i,:};
280280
thisFile = thisRow{2};
Binary file not shown.
Binary file not shown.
Binary file not shown.
63 Bytes
Binary file not shown.
85 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)