mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
Handles `rounding` when doing trailing_fill on the rail of `Slider`.
We can see this by setting the rounding to around 8.0
```
ui.visuals_mut().widgets.inactive.rounding = Rounding::same(8.0);
```
Before : There is a little bit of blue painted on the left end.

After : Fix
