summaryrefslogtreecommitdiffstats
path: root/widget/src/radio.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-05 22:03:10 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-05 22:03:10 +0100
commit87d16a090b14fa206bb87041a32d66348bc294e4 (patch)
tree77522cd0d372d23897d9957d39115846b37c50a9 /widget/src/radio.rs
parent7d84c9c9c3619513519ac1ef7ea1c5f6e4e2cf5d (diff)
downloadiced-87d16a090b14fa206bb87041a32d66348bc294e4.tar.gz
iced-87d16a090b14fa206bb87041a32d66348bc294e4.tar.bz2
iced-87d16a090b14fa206bb87041a32d66348bc294e4.zip
Reduce default size of `checkbox` to `15.0`
Diffstat (limited to '')
-rw-r--r--widget/src/radio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/radio.rs b/widget/src/radio.rs
index c4283af8..90a10a0b 100644
--- a/widget/src/radio.rs
+++ b/widget/src/radio.rs
@@ -91,7 +91,7 @@ where
Renderer: text::Renderer,
{
/// The default size of a [`Radio`] button.
- pub const DEFAULT_SIZE: f32 = 14.0;
+ pub const DEFAULT_SIZE: f32 = 15.0;
/// The default spacing of a [`Radio`] button.
pub const DEFAULT_SPACING: f32 = 10.0;