I came across the following problem which seems to be related but it is not yet fixed by your previous commit. If I apply the following plot several times on the same device, the margins keep growing from plot to plot:
library("tinyplot")
tinyplot(bill_len ~ bill_dep, facet = ~ island, data = penguins)
tinyplot_add(type = "p")
tinyplot(bill_len ~ bill_dep, facet = ~ island, data = penguins)
tinyplot_add(type = "p")
tinyplot(bill_len ~ bill_dep, facet = ~ island, data = penguins)
tinyplot_add(type = "p")
Originally posted by @zeileis in #477
GM:
I haven't investigated yet, but I think it might be related to #481Update: See below.