From a33161aa9c43fa0a472038b5020acacac64b472d Mon Sep 17 00:00:00 2001 From: Josef Heinen Date: Sat, 2 Jan 2016 12:15:07 +0100 Subject: [PATCH] Reset default backend to PyPlot GR should NOT be the default backend until it is finished :-) --- src/plotter.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plotter.jl b/src/plotter.jl index 032e4152..6cd8bb32 100644 --- a/src/plotter.jl +++ b/src/plotter.jl @@ -112,7 +112,7 @@ CurrentBackend(sym::Symbol) = CurrentBackend(sym, backendInstance(sym)) # --------------------------------------------------------- function pickDefaultBackend() - for pkgstr in ("Gr", "PyPlot", "Immerse", "Qwt", "Gadfly", "UnicodePlots", "Bokeh", "GLVisualize") + for pkgstr in ("PyPlot", "Gr", "Immerse", "Qwt", "Gadfly", "UnicodePlots", "Bokeh", "GLVisualize") if Pkg.installed(pkgstr) != nothing return backend(symbol(lowercase(pkgstr))) end