From 301e6e5fdc40f36f98bd8fef0fa923745533ad27 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 30 Aug 2023 05:34:17 +0200 Subject: Reduce default spacing of `Checkbox` --- widget/src/checkbox.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widget/src/checkbox.rs b/widget/src/checkbox.rs index a66ce3ff..0158f15c 100644 --- a/widget/src/checkbox.rs +++ b/widget/src/checkbox.rs @@ -61,7 +61,7 @@ where const DEFAULT_SIZE: f32 = 20.0; /// The default spacing of a [`Checkbox`]. - const DEFAULT_SPACING: f32 = 15.0; + const DEFAULT_SPACING: f32 = 10.0; /// Creates a new [`Checkbox`]. /// -- cgit