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
list(free(ggplot()), ggplot()) |>
wrap_plots() &
plot_annotation()
#> Error in split.default(names(settings), settings): first argument must be a vector
Moreover, the issue does not arise in general but depends on the position of the plot to which free() is applied, e.g. if I switch the plots which make up the patch we don't get an error.
When running an older code of mine I stumbled over a possible bug introduced in version
1.3.0
when usingfree()
andplot_annotation()
Without
plot_annotation()
the following reprex works fine:But adding
plot_annotation()
raises an error:Moreover, the issue does not arise in general but depends on the position of the plot to which
free()
is applied, e.g. if I switch the plots which make up the patch we don't get an error.And as a reference, the buggy code worked fine in version
1.2.0
:The text was updated successfully, but these errors were encountered: