Skip to content
Snippets Groups Projects
Commit 8870d745 authored by leprob001's avatar leprob001
Browse files

Added missing function for loaded float information.

parent 07f85b94
No related branches found
No related tags found
No related merge requests found
212
\ No newline at end of file
213
\ No newline at end of file
function [] = updateLoadedFloatInformation()
%UPDATELOADEDFLOATINFORMATION Summary of this function goes here
% Detailed explanation goes here
global artoaWorkspace artoaGui;
s = 'No float loaded.';
if ~artoa.data.hasMember(artoaWorkspace, 'float')
artoaGui.main.textLoadedFloat.String = s;
return;
end
artoaGui.main.textLoadedFloat.String = [ ...
'Float: ' ...
num2str(artoaWorkspace.float.floatname) ...
', Project: ' ...
artoaWorkspace.float.projectname ...
', Editor: ' ...
artoaWorkspace.float.edited_by ...
];
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment