Emil Ernerfeldt

Results 813 comments of Emil Ernerfeldt

> In terms of design, should the new flag state be attached to the `egui::Context` and automatically inherited by fonts as they are added? I'll see what it takes to...

I tried this out with the default font with `pixels_per_point = 1.15`. ## Before: ![old-rounding](https://user-images.githubusercontent.com/1148717/196471941-8e890791-5dfa-4f22-bf22-5ba977f4e884.png) ## After: ![new-rounding](https://user-images.githubusercontent.com/1148717/196471957-9d0312c9-577c-492b-8944-d601e3401dd7.png) The new code produces some bad kerning in many places: ![Screen Shot...

Thanks for testing! Interesting that you cannot replicate now. I've added some more settings to make it more similar to Rerun. Can you please `git pull` and again run: `RUST_LOG=debug...

Thanks for working on this, and it looks fantastic! I do like this feature, but one immediate problem I see is how much whitespace it uses up, especially on the...

> I think plots without axis labels should be the exception, not the other way round. If someone really wants a plot without axis labels it should be specified explicitly....

eframe auto-saves every 30 seconds. eframe native also saves on exit. I just added this to eframe: * https://github.com/emilk/egui/pull/2927 please try latest egui master and see if it now works...

There are a lot of interfaces that take `impl Into` as argument. With this PR, it would be very easy to accidentally pass a position in these places.

@fundon why would it be more convenient? You can use `pos2(x,y)` or `[x,y]` and it will work fine.

I guess this could be a flag during startup, if you feel like making a PR!

Yup - `ScrollArea` and `Table` both support this