Skip to content

Commit

Permalink
fixed bug (a filename should also be generated when saving only an an…
Browse files Browse the repository at this point in the history
…imation)
  • Loading branch information
s-themis committed Aug 24, 2019
1 parent 6a98c99 commit 23d043b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,5 +1,5 @@
function plot_case = add_visualization_filename(input, plot_case, n_plot_case, n_input_case)
if is_saving_visualization_active(plot_case, "image") || is_saving_visualization_active(plot_case, "octave_figure")
if is_saving_visualization_active(plot_case, "image") || is_saving_visualization_active(plot_case, "octave_figure") || is_animate_and_save_active(plot_case)
filename_substrings{1} = get_input_case_number_substring(plot_case, n_input_case);
filename_substrings{2} = get_input_case_info_substring(input, plot_case, n_input_case);
filename_substrings{3} = get_plot_case_number_substring(n_plot_case);
Expand Down

0 comments on commit 23d043b

Please sign in to comment.