Skip to content
Snippets Groups Projects
Commit 07f85b94 authored by leprob001's avatar leprob001
Browse files

Added line for loaded float information in main window.

parent 9292b324
No related branches found
No related tags found
No related merge requests found
211
\ No newline at end of file
212
\ No newline at end of file
......@@ -35,6 +35,9 @@ artoa.controller.edit.offsets.updateGui();
%% Update menu buttons
artoa.controller.updateMenuButtons();
%% Update status text in main window
artoa.controller.main.updateLoadedFloatInformation();
%% Notify user if he loaded an outdated interim version
[upToDate, message] = artoa.versioning.checkInterim(artoaWorkspace);
if ~upToDate
......
......@@ -48,5 +48,8 @@ artoa.controller.edit.offsets.updateGui();
%% Update menu buttons
artoa.controller.updateMenuButtons();
%% Update status text in main window
artoa.controller.main.updateLoadedFloatInformation();
end
......@@ -8,6 +8,7 @@ global artoaGui;
artoaGui.main.textVersionInfo.String = artoa.versioning.getVersionString();
artoa.controller.main.updateLoadedFloatInformation();
end
......@@ -239,6 +239,18 @@ artoaGui.main.textVersionInfo = uicontrol( ...
'Position', [(widthWindow - 20) 1 20 1] ...
);
%% Float loaded status
artoaGui.main.textLoadedFloat = uicontrol( ...
'Parent', artoaGui.figures.main, ...
'String', 'No float loaded.', ...
'Style', 'text', ...
'FontSize', 10, ...
'Units', 'characters', ...
'HorizontalAlignment', 'left', ...
'Background', [1 1 1], ...
'Position', [3 1 80 1] ...
);
%% Track parameter
artoaGui.trackParameter.frameTrackingParameter = uipanel( ...
......
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