We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With JuliaLang/julia#5821, Winston fails to show plots because it does runtime work while compiling Winston.jl (related to JuliaLang/julia#1268)
Winston.jl
2549 if !isdefined(Main, :IJulia) 2550 if output_surface == :gtk 2551 include("gtk.jl") 2552 display(::WinstonDisplay, p::PlotContainer) = gtk(p) 2553 elseif output_surface == :tk 2554 include("tk.jl") 2555 display(::WinstonDisplay, p::PlotContainer) = tk(p) 2556 else 2557 assert(false) 2558 end 2559 pushdisplay(WinstonDisplay()) 2560 end
The text was updated successfully, but these errors were encountered:
A lot of packages are going to have to move code like this into init functions.
Sorry, something went wrong.
No branches or pull requests
With JuliaLang/julia#5821, Winston fails to show plots because it does runtime work while compiling
Winston.jl
(related to JuliaLang/julia#1268)The text was updated successfully, but these errors were encountered: