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)
```
|
||
|---|---|---|
| .. | ||
| custom3d_glow.rs | ||
| custom3d_wgpu.rs | ||
| custom3d_wgpu_shader.wgsl | ||
| fractal_clock.rs | ||
| http_app.rs | ||
| image_viewer.rs | ||
| mod.rs | ||