mirror of
https://github.com/emilk/egui.git
synced 2026-07-15 19:18:54 +00:00
d2c4269240
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
