You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Interact
struct A end
Base.show(io::IO, ::MIME"image/png", ::A) = error()
@manipulate for a=1:5
a == 5 ? A() : a
end
When run inside Juno, and the slider is moved to 5, it stops updating, but the error is not reported.
This affects rendering of plots if there's a mistake that prevents it from being shown, e.g.
using Plots
@manipulate for i=1:5
plot([0],title=i)
end
fails with no error message.
The text was updated successfully, but these errors were encountered:
MWE:
When run inside Juno, and the slider is moved to 5, it stops updating, but the error is not reported.
This affects rendering of plots if there's a mistake that prevents it from being
show
n, e.g.fails with no error message.
The text was updated successfully, but these errors were encountered: