iced/graphics
rubik83 9991a89428 fix active_progress_width formula
change :
let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(1.0))
to :
let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0)
2020-11-26 03:09:46 +01:00
..
fonts Render arrow icon in ComboBox 2020-07-08 11:05:15 +02:00
src fix active_progress_width formula 2020-11-26 03:09:46 +01:00
Cargo.toml Add license to iced-graphics' Cargo.toml 2020-11-25 23:02:50 +03:00