egui/crates/egui_demo_app/src
Emil Ernerfeldt b27aa27e94
Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543)
Thanks to `impl From<bool> for Vec2b` one can now shorten some builder
calls, like:

Previous:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink([false; 2])
```

New:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink(false)
```
2023-11-11 21:31:36 +01:00
..
apps Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543) 2023-11-11 21:31:36 +01:00
backend_panel.rs Fix some lints found by clippy 1.73 2023-10-06 09:01:31 +02:00
frame_history.rs Support images with rounded corners (#3257) 2023-08-15 09:29:30 +02:00
lib.rs eframe web: Better panic handling (#2942) 2023-04-21 08:33:01 +02:00
main.rs Set a default icon for all eframe apps: a white `e` on black background (#2996) 2023-05-17 16:23:32 +02:00
web.rs Cleanup ahead of release 2023-05-23 19:53:32 +02:00
wrap_app.rs Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543) 2023-11-11 21:31:36 +01:00