Add newline between subplots

This commit is contained in:
t-bltg 2021-08-30 23:25:19 +02:00 committed by GitHub
parent dc51f2c159
commit 4744152f86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,7 +169,7 @@ end
function _show(io::IO, ::MIME"text/plain", plt::Plot{UnicodePlotsBackend})
unicodeplots_rebuild(plt)
foreach(x -> show(io, x), plt.o)
foreach(x -> (show(io, x); println(io)), plt.o)
nothing
end