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
The _cat() methods (subplots.jl l103) does not preserve the shapes defined on the sub_layouts, I wrote a small fix. Perhaps we can make a PR out of this? I don't know how to make a fix branch.
function handle_shapes!(big_layout, sub_layout, ix::Int)
if !isempty(sub_layout[:shapes])
if !haskey(big_layout,:shapes)
big_layout[:shapes] = Shape[]
end
for shape in sub_layout[:shapes]
shape[:xref] = "x$ix"
shape[:yref] = "y$ix"
push!(big_layout[:shapes],shape)
end
end
end
The text was updated successfully, but these errors were encountered:
xdevries
changed the title
_cat() does not preserver shapes
_cat() does not preserve shapes
Nov 24, 2021
The _cat() methods (subplots.jl l103) does not preserve the shapes defined on the sub_layouts, I wrote a small fix. Perhaps we can make a PR out of this? I don't know how to make a fix branch.
The text was updated successfully, but these errors were encountered: