Skip to content
Snippets Groups Projects
Commit 8e9b2611 authored by Jacques Grelet's avatar Jacques Grelet
Browse files

display information in 2 columns

parent 0cfc6c74
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ wbool = true;
% update waitbar title with Tex mode disable
% ------------------------------------------
if wbool
wb = waitbar(0, ' Loading cnv files... ');
wb = waitbar(0, {' Loading cnv files...',''});
hchild = get(wb,'children');
htitle = get(hchild,'title');
set(htitle,'Interpreter','None');
......@@ -64,7 +64,7 @@ tsg.file.type = 'CNV';
for i=1:m
if iscell(filename)
s = readCnv(filename{i});
waitbar(i/m, wb, sprintf(' Reading file %s... ', filename{i}));
waitbar(i/m, wb, {' Reading file', sprintf('%s...', filename{i})});
else
s = readCnv(filename);
end
......@@ -82,6 +82,7 @@ end
% convert DATE and DAYD
% ---------------------
waitbar(1, wb, {'Please wait', 'The operation is processing'});
tsg.DAYD = julianToDatenum(tsg.DAYD);
tsg.DATE = deblank( datestr(tsg.DAYD,tsg.preference.date_format_variable));
......
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