From e36f072c5a7e9036faffa37ac642e0697f767716 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Thu, 7 Mar 2024 00:07:23 +0100 Subject: [PATCH] fix(color_picker): add padding to recent colors container to prevent scroller overlap --- src/widget/color_picker/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widget/color_picker/mod.rs b/src/widget/color_picker/mod.rs index d3de5b97..e6719103 100644 --- a/src/widget/color_picker/mod.rs +++ b/src/widget/color_picker/mod.rs @@ -417,6 +417,7 @@ where }) .collect::>(), ) + .padding([0.0, 0.0, f32::from(spacing.space_m), 0.0]) .spacing(spacing.space_xxs), ) .width(self.width)