From 3992a3d4ac085126857cf096791717f1e12512fc 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 cd236924..56402ff5 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -384,9 +384,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, }