Thiago Mattos

Results 5 comments of Thiago Mattos

The temporary solution is to change the setting "editor.renderWhitespace" to "trailing" or "none". The color issue is caused by the opaque dots around the pretty symbol.

Is this still happening? I thought there was an effective workaround in upstream already ``` julia> import CImGui, ModernGL, GLFW julia> include(joinpath(pathof(CImGui), "..", "..", "demo", "demo.jl")) julia> official_demo() 2024-11-04 15:13:27.120...

> Can you try an MWE with `Text()` and `TextUnformatted()` and confirm this is what's causing the segfault? It is indeed. I also pasted the fix from #95 on wrapper.jj...

No segfault there: ```julia import CImGui as ig, ModernGL, GLFW ig.set_backend(:GlfwOpenGL3) ctx = ig.CreateContext() ig.render(ctx; window_size=(1280, 760), window_title="ImGui Window", opengl_version=v"3.3") do ig.Begin("Makie demo") @ccall ig.lib.libcimgui.igText("foo"::Cstring)::Cvoid ig.End() end ``` Rendering foo...

I also had this problem and had to use an ugly workaround. Thanks for the fix! Do you have an estimate when the next release will be out? Technically this...