From a7e035cd852ab13ce0ef04671c1e683fc343aff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Vojinovi=C4=87?= Date: Mon, 4 Nov 2024 20:33:27 +0100 Subject: [PATCH] fix: scrollbar width --- widget/src/scrollable.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index d125c7f4c8..fcf6f2421d 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -376,9 +376,9 @@ pub struct Scrollbar { impl Default for Scrollbar { fn default() -> Self { Self { - width: 10.0, + width: 8.0, margin: 0.0, - scroller_width: 10.0, + scroller_width: 8.0, alignment: Anchor::Start, spacing: None, }