Skip to content

Commit 322d2eb

Browse files
committed
only use Unicode plotting in Juno
Since its the only thing that works............
1 parent 761c798 commit 322d2eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function textrecurrenceplot(io::IO, R::ARM; minh = 25, maxh = 0.5, ascii = nothi
6666
# Always use ASCII in IJulia until this issue is fixed:
6767
# https://github.com/jupyter/notebook/issues/4354
6868
asciidef = (border = :ascii, canvas = DotCanvas)
69-
elseif (isdefined(Main, :Juno) && Main.Juno.isactive()) || !Sys.iswindows()
69+
elseif isdefined(Main, :Juno) && Main.Juno.isactive()
7070
asciidef = (border = :solid, canvas = BrailleCanvas)
7171
else
7272
asciidef = (border = :ascii, canvas = DotCanvas)

0 commit comments

Comments
 (0)