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
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -18,10 +18,10 @@ using Base.Meta
import Showoff
import StatsBase
import JSON
import RecipePipeline: _process_userrecipes, _process_plotrecipe,
import RecipePipeline: _process_userrecipe, _process_plotrecipe,
_process_seriesrecipe, _preprocess_args,
preprocessArgs!, is_st_supported,
recipe_pipeline!,
finalize_subplot!, recipe_pipeline!,
_recipe_init!, _recipe_after_user!,
_recipe_after_plot!, _recipe_before_series!,
_recipe_finish!
+1 -1
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)
_prepare_annotations(sp, plotattributes)
_expand_subplot_extrema(sp, plotattributes, st)