Emil Ernerfeldt

Results 812 comments of Emil Ernerfeldt

Perhaps a proper fix should be made in winit, but until then it should be easy to just ignore `WindowEvent::ReceivedCharacter` if the character is `\t` or a number, and alt...

It should be pretty easy to add if you want to give it a go!

Overlapping widgets is something I also miss from time to time, e.g. to put controls on top of a canvas that can also be interacted with. Right now the only...

Related: https://github.com/emilk/egui/issues/1516

Do you insert the TTF once or every frame? (I've seen people do the latter before)

I tried it locally and had no problems with performance. Make sure you compile with `--release`!

Is this really an issue? If you take https://github.com/emilk/egui/blob/master/examples/custom_font/src/main.rs and modify it with your own font, does it lag? On native, web, or both? Are you using `--release`? Is it...

Can't you just add a `ScrollArea` to a menu?

The problem is that `paint_uniform_rectangle` needs an early-out before indexing into `target.pixels`: ``` rust if (max_x_i

The core of this repo are `imgui_sw.hpp` and `imgui_sw.cpp`. Those are the files I expect someone to pluck out and plug in to their own backend. I used `main.cpp` and...