Skip to content
Snippets Groups Projects
Commit e835c7d9 authored by Marco Ratto's avatar Marco Ratto
Browse files

Bug fix: graphic options are not passed to global options_ (for the next...

Bug fix: graphic options are not passed to global options_ (for the next release try to skip the use of the global here).
parent c031b463
Branches
Tags
No related merge requests found
......@@ -61,6 +61,16 @@ options_ident = set_default_option(options_ident,'advanced',0);
options_ident = set_default_option(options_ident,'normalize_jacobians',1);
options_ident = set_default_option(options_ident,'lik_init',1);
options_ident = set_default_option(options_ident,'analytic_derivation',1);
if isfield(options_ident,'nograph'),
options_.nograph=options_ident.nograph;
end
if isfield(options_ident,'nodisplay'),
options_.nodisplay=options_ident.nodisplay;
end
if isfield(options_ident,'graph_format'),
options_.graph_format=options_ident.graph_format;
end
if options_ident.gsa_sample_file,
GSAFolder = checkpath('gsa',M_.dname);
if options_ident.gsa_sample_file==1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment