From 4e6c64ebcc7d4367025535a97a33f212ca48221d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Miclu=C8=9Ba-C=C3=A2mpeanu?= Date: Sun, 15 Mar 2020 01:36:29 +0200 Subject: [PATCH] Add finalize_subplot! --- src/Plots.jl | 2 +- src/pipeline.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plots.jl b/src/Plots.jl index 831941ae..08fa45dd 100644 --- a/src/Plots.jl +++ b/src/Plots.jl @@ -21,7 +21,7 @@ import JSON 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! diff --git a/src/pipeline.jl b/src/pipeline.jl index 7508d7ee..89329326 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -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)