From 1e83bc05ee791e84d038248c5bfe9b8ab424bfd1 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Sun, 30 Sep 2018 18:03:22 +0200 Subject: [PATCH] move including of default backends out of __init__() --- src/Plots.jl | 4 ++++ src/init.jl | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Plots.jl b/src/Plots.jl index f6e4b19f..35b16001 100644 --- a/src/Plots.jl +++ b/src/Plots.jl @@ -170,6 +170,10 @@ include("backends.jl") include("output.jl") include("init.jl") +include("backends/plotly.jl") +include("backends/gr.jl") +include("backends/web.jl") + # --------------------------------------------------------- @shorthands scatter diff --git a/src/init.jl b/src/init.jl index 34fa035b..08d1dd2b 100644 --- a/src/init.jl +++ b/src/init.jl @@ -16,10 +16,6 @@ function __init__() pushdisplay(PlotsDisplay()) end) - include(joinpath(@__DIR__, "backends", "plotly.jl")) - include(joinpath(@__DIR__, "backends", "gr.jl")) - include(joinpath(@__DIR__, "backends", "web.jl")) - @require GLVisualize = "4086de5b-f4b6-55f3-abb0-b8c73827585f" include(joinpath(@__DIR__, "backends", "glvisualize.jl")) @require HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" include(joinpath(@__DIR__, "backends", "hdf5.jl")) @require InspectDR = "d0351b0e-4b05-5898-87b3-e2a8edfddd1d" include(joinpath(@__DIR__, "backends", "inspectdr.jl"))