The following script throws an error:
using CairoMakie
s = Scene()
scatter!(s,[0,0,1/2,1/2],[0,1/2,0,1/2])
display(s)
empty!(s)
scatter!(s,[0,0,-1/2,-1/2],[0,-1/2,0,-1/2])
display(s)
KeyError: key :markercolor not found
Is this behavior a bug or not? The first call to scatter!() works as intended, and the scene is displayed. The second call to scatter!() throws the error. What is going on here?