Emil Ernerfeldt

Results 812 comments of Emil Ernerfeldt

You found a bug @ndarilek ! The call to `widget_info` checks if the widget has gained focus (by e.g. pressing Tab), but this misses the case where someone calls `request_focus`...

`Response::changed` is for reporting that user data has changed, i.e. the `String` of the `TextEdit`, or the `f32` of a `Slider`, or that the `bool` of a checkbox has been...

Wow @mwcampbell that's sounds great!

@mwcampbell thank you so much for your work on AccessKit, and on working on the egui integration! I like your current approach of having `WidgetInfo` fill in AccessKit data; it...

The problem is that `egui-wgpu` on `master` is incompatible with latest egui (`0.18`) (at least if I recall correctly), which means we also need to do a new egui release...

I'll try do do a 0.19 release next week!

I like this too (I used to have this in Algodoo back in the day). Definitely behind a feature flag though!

I like this too (I used to have this in Algodoo back in the day). Definitely behind a feature flag though, and find the lightest possible dependency!

An alternative is to use the result of `Window::Show` and `Area::show`, both which return information about its position on screen. Did you consider that approach? Another approach is to follow...

@20iahazban probably due to saved state: https://docs.rs/eframe/latest/eframe/trait.App.html#method.save Please check that the bad value is in the stored state (maybe a negative `inner_size_points` or `position`?), then maybe we can fix it!