Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-03-09 | Remove redundant `widget` modules in subcrates | 1 | -5/+0 | ||
Instead, we can define the type aliases just once in the root crate! | |||||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-10-20 | Wire up styling to `Slider` in `iced_native` | 1 | -20/+1 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -100/+1 | ||
2020-11-26 | Account for empty ranges in `Slider` and `ProgressBar` | 1 | -4/+8 | ||
2020-11-26 | fix slider handle_offset formula | 1 | -1/+1 | ||
change : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(1.0)) to : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0) | |||||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -3/+0 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-23 | Use `f32` for `border_width` and `border_radius` | 1 | -5/+5 | ||
2020-08-01 | Add `height` method to `Slider` | 1 | -15/+13 | ||
2020-06-13 | Make `Slider` value type generic | 1 | -2/+2 | ||
2020-05-19 | Merge unnecessary split widget modules | 1 | -1/+108 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 1 | -1/+2 | ||
2020-05-19 | Draft first working version of `iced_glow` :tada: | 1 | -0/+0 | ||
2020-01-07 | Implement styling for `Slider` | 1 | -0/+16 | ||