summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/radio.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-11-24 00:17:30 +0100
committerLibravatar GitHub <noreply@github.com>2020-11-24 00:17:30 +0100
commit5615643c5200ec98c5bb8ca992a67697d212ef5d (patch)
treed94fda43e3c7037208caf7645f9a9313b6aa02c4 /graphics/src/widget/radio.rs
parentea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff (diff)
parent1916755b6b3f84329c3e3f3e9a4e1b6d2b4e45a4 (diff)
downloadiced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.gz
iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.bz2
iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.zip
Merge pull request #628 from hecrj/improvement/float-border-radius
Use `f32` for `border_width` and `border_radius`
Diffstat (limited to 'graphics/src/widget/radio.rs')
-rw-r--r--graphics/src/widget/radio.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/src/widget/radio.rs b/graphics/src/widget/radio.rs
index da41ac47..fd3d8145 100644
--- a/graphics/src/widget/radio.rs
+++ b/graphics/src/widget/radio.rs
@@ -42,7 +42,7 @@ where
let radio = Primitive::Quad {
bounds,
background: style.background,
- border_radius: (size / 2.0) as u16,
+ border_radius: size / 2.0,
border_width: style.border_width,
border_color: style.border_color,
};
@@ -58,8 +58,8 @@ where
height: bounds.height - dot_size,
},
background: Background::Color(style.dot_color),
- border_radius: (dot_size / 2.0) as u16,
- border_width: 0,
+ border_radius: dot_size / 2.0,
+ border_width: 0.0,
border_color: Color::TRANSPARENT,
};