Skip to content

Commit 7251f28

Browse files
committed
quartile markers are hidden
1 parent d464d5e commit 7251f28

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/trials.jl

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,18 @@ function Base.show(io::IO, ::MIME"text/plain", t::Trial)
503503
elseif i == q25pos
504504
# Quartile markers exist partly to explain the median marker, without needing a legend
505505
# printstyled(io, "¼", color=:light_black)
506-
printstyled(io, "", color=:light_black)
506+
if VERSION > v"1.7-"
507+
printstyled(io, "", color=:light_black, hidden=true)
508+
else
509+
printstyled(io, "", color=:light_black)
510+
end
507511
elseif i == q75pos
508512
# printstyled(io, "¾", color=:light_black)
509-
printstyled(io, "", color=:light_black)
513+
if VERSION > v"1.7-"
514+
printstyled(io, "", color=:light_black, hidden=true)
515+
else
516+
printstyled(io, "", color=:light_black)
517+
end
510518
else
511519
print(io, " ")
512520
end

0 commit comments

Comments
 (0)