From e97d8654684cb90cc37fe8f7b74289a2b13fadaf Mon Sep 17 00:00:00 2001 From: SimonDanisch Date: Thu, 6 Dec 2018 17:57:16 +0100 Subject: [PATCH] uncomment --- src/display.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/display.jl b/src/display.jl index 4bf00263f..24df69752 100644 --- a/src/display.jl +++ b/src/display.jl @@ -118,11 +118,11 @@ function Stepper(scene, path) Stepper(scene, path, 1) end -# function FileIO.save(filename::String, scene::Scene) -# open(filename, "w") do s -# show(IOContext(s, :full_fidelity => true), MIME"image/png"(), scene) -# end -# end +function FileIO.save(filename::String, scene::Scene) + open(filename, "w") do s + show(IOContext(s, :full_fidelity => true), MIME"image/png"(), scene) + end +end """ step!(s::Stepper) steps through a `Makie.Stepper` and outputs a file with filename `filename-step.jpg`.