egui/tests
Emil Ernerfeldt 3805584238
Fix bug causing tooltips with dynamic content to shrink (#5168)
Affects `.on_hover_text(…)` with dynamic content (i.e. content that
changes over time).

* Closes https://github.com/emilk/egui/issues/5167

`.on_hover_ui` with dynamic content can still hit the shrinking problem.
The general solution depends on solving
https://github.com/emilk/egui/issues/5138 but a work-around is to add
this to your tooltips:

```diff
 response.on_hover_ui(|ui| {
+    ui.set_max_width(ui.spacing().tooltip_width);
     // …
 });
```
2024-09-25 18:50:14 +02:00
..
test_egui_extras_compilation Fix compilation of `egui_extras` without `serde` feature (#5014) 2024-08-27 11:38:33 +02:00
test_inline_glow_paint Support returning errors when creating the app (#4565) 2024-05-28 21:59:19 +02:00
test_size_pass Fix bug causing tooltips with dynamic content to shrink (#5168) 2024-09-25 18:50:14 +02:00
test_ui_stack Make Light & Dark Visuals Customizable When Following The System Theme (#4744) 2024-09-11 17:52:53 +02:00
test_viewports Add `Context::request_discard` (#5059) 2024-09-13 14:20:51 +02:00
README.md Move test crates to own folder (#4554) 2024-05-27 21:28:33 +02:00

README.md

Test apps

Some application to tests various parts of egui and eframe.

At some point it would be nice to have automatic screenshot regression tests for these.