Merge pull request #2465 from JuliaPlots/smc/fix-pipeline

Fix the pipeline
This commit is contained in:
Daniel Schwabeneder 2020-03-15 12:58:38 +01:00 committed by GitHub
commit 97bbabf53b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -18,10 +18,10 @@ using Base.Meta
import Showoff import Showoff
import StatsBase import StatsBase
import JSON import JSON
import RecipePipeline: _process_userrecipes, _process_plotrecipe, import RecipePipeline: _process_userrecipe, _process_plotrecipe,
_process_seriesrecipe, _preprocess_args, _process_seriesrecipe, _preprocess_args,
preprocessArgs!, is_st_supported, preprocessArgs!, is_st_supported,
recipe_pipeline!, finalize_subplot!, recipe_pipeline!,
_recipe_init!, _recipe_after_user!, _recipe_init!, _recipe_after_user!,
_recipe_after_plot!, _recipe_before_series!, _recipe_after_plot!, _recipe_before_series!,
_recipe_finish! _recipe_finish!

View File

@ -1,5 +1,5 @@
function finalize_subplot!(plt, plotattributes::AKW) function finalize_subplot!(plt::Plot, st, plotattributes::AKW)
sp = _prepare_subplot(plt, plotattributes) sp = _prepare_subplot(plt, plotattributes)
_prepare_annotations(sp, plotattributes) _prepare_annotations(sp, plotattributes)
_expand_subplot_extrema(sp, plotattributes, st) _expand_subplot_extrema(sp, plotattributes, st)