Emil Ernerfeldt
Emil Ernerfeldt
Recent refactors of the data density graph should make this a lot easier to implement now. --- We currently scale with the number of log calls. This issues suggests scaling...
I think this makes sense, but I still haven't understood a concrete use case for this. If you use `KeyEvent::text` and ignore `Event::Text`, then you miss some events (e.g. IME...
Thanks for explaining this in more detail! It seems the core need is to be able to match a specific `Key` event to a specific `Text` event, and the other...
Please check if this was solved by * https://github.com/emilk/egui/pull/5188
There is not much planning going on :) A few people wanted Android support, so they opened a few PRs, and now we have Android support. Getting eframe running on...
This is by design (though arguably not good design). The thinking (within egui) is: pressing escape should escape _everything_. Otherwise what it escapes would depend on the order of which...
Switching all `i.key_pressed(Key::Escape)` to use `consume_key` instead might be the right solution, we just need to be careful to do it in the right place so that: * Pressing escape...
Let's test if this is still an issue after the recent Popup changes
There are two problems here, one that is trivial, the other which is not. # Trivial problem: Why is the `ScrollArea` so small? Let's look at this simpler case: ```...