Skip to content
Snippets Groups Projects
Commit 8b70e108 authored by leprob001's avatar leprob001
Browse files

Bugfix, if nothing has been loaded, checking the "Use offset" checkbox throwed an error.

parent 58dd967d
No related branches found
No related tags found
No related merge requests found
189 190
\ No newline at end of file \ No newline at end of file
...@@ -4,6 +4,10 @@ function [] = recalculateToaGpsAndPlot() ...@@ -4,6 +4,10 @@ function [] = recalculateToaGpsAndPlot()
global artoaWorkspace artoaDataInput; global artoaWorkspace artoaDataInput;
if ~isfield(artoaWorkspace, 'toaData')
return;
end
%% Recalculate TOAs %% Recalculate TOAs
% combine initial toa and current applied soundsources % combine initial toa and current applied soundsources
......
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