From 64ad25d1b5cd68457d36fda67d96f99812a53528 Mon Sep 17 00:00:00 2001 From: arkon Date: Sat, 28 Oct 2023 22:41:35 -0400 Subject: [PATCH] Make scrollbar slightly chonkier Closes #9728 --- .../presentation/core/components/VerticalFastScroller.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/presentation-core/src/main/java/tachiyomi/presentation/core/components/VerticalFastScroller.kt b/presentation-core/src/main/java/tachiyomi/presentation/core/components/VerticalFastScroller.kt index 4f44f60e25..03380180e8 100644 --- a/presentation-core/src/main/java/tachiyomi/presentation/core/components/VerticalFastScroller.kt +++ b/presentation-core/src/main/java/tachiyomi/presentation/core/components/VerticalFastScroller.kt @@ -350,7 +350,6 @@ fun VerticalGridFastScroller( }, ) .height(ThumbLength) - .padding(horizontal = 8.dp) .padding(end = endContentPadding) .width(ThumbThickness) .alpha(alpha.value) @@ -427,7 +426,7 @@ object Scroller { } private val ThumbLength = 48.dp -private val ThumbThickness = 8.dp +private val ThumbThickness = 12.dp private val ThumbShape = RoundedCornerShape(ThumbThickness / 2) private val FadeOutAnimationSpec = tween( durationMillis = ViewConfiguration.getScrollBarFadeDuration(),