Simon
Simon
>delete!(axis, the_contour) + the_contour = contour!(fig, ...). That's incredible inefficient, any reason you need to do it that way? But I guess that means that `delete!` is broken... Btw, with...
Hm, maybe worth to open an issue about making contours work with 0 points...
Hm, that looks like a problem with i3 - because I just checked with `]activate --temp; add GLMakie; test GLMakie` on 1.6.3, that everything works, and it seems to have...
>It also seems I cannot properly close this window with either CTRL-Q nor Alt-F4. Hm, does it work by pressing the `x` button? The tests that are failing for you...
>Maybe a "stupid" follow up question, if I would like to have to support windows by using CTRL-Q, ALT-F4 or some other shortcut, would this be a feature to discuss...
Are you sure that this is a regression? I remember that this issue popped up ages ago, and it's pretty much not fixable since it's the window manager who resizes...
I proposed `Backend.save/show` some time ago for this. Would that work as well?
Ok, thinking some more about this, i'd propose the following API: ```julia # Opens a window and returns a screen for the current active backend screen = display(figlike; screen_params...)::Backend.Screen #...
Thanks a lot for getting this started! >Maybe we could replace the stars scatter plot with real stars? I actually started with that dataset - but took it out when...
PerceptualColorMaps already works just fine: ``` surface(rand(10, 10), colormap = PerceptualColorMaps.cmap("R3")) ```