From 92659e58ba1640733398e22dd5f67f12e257d647 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Wed, 20 Apr 2022 16:33:55 +0200 Subject: [PATCH] Update src/pipeline.jl Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/pipeline.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pipeline.jl b/src/pipeline.jl index 1a9d75df..53786524 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -351,7 +351,8 @@ function RecipesPipeline.add_series!(plt::Plot, plotattributes) sp = _prepare_subplot(plt, plotattributes) if plotattributes[:series_permutation] != :none letter1, letter2 = plotattributes[:series_permutation] - plotattributes[letter1], plotattributes[letter2] = plotattributes[letter2], plotattributes[letter1] + plotattributes[letter1], plotattributes[letter2] = + plotattributes[letter2], plotattributes[letter1] end _expand_subplot_extrema(sp, plotattributes, plotattributes[:seriestype]) _update_series_attributes!(plotattributes, plt, sp)