Hello, I just noticed something wrong with my lines plots today. When I run the following simple test code in the REPL:
using GLMakie
fig = Figure()
ax = fig[1, 1] = Axis(fig)
xs = 0:0.01:5
lines!(xs, map(sin, xs))
This is the kind of output I get:

The lines drawn seem to only connect two points at a time, and only do so very very intermittently. I have noticed no problems with scatter or even linesegments, just lines.
Does anyone have any suggestions to debug this further? Help would be greatly appreciated. Thanks!
Edit: Julia 1.6.3, GLMakie 0.4.7, Wayland on Linux. CairoMakie does not have the same issue.