소스 검색

VerticalFastScroller: Fix scroller consuming touch when it's invisible (#7484)

Ivan Iskandar 2 년 전
부모
커밋
9385b86ecb
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      app/src/main/java/eu/kanade/presentation/components/VerticalFastScroller.kt

+ 1 - 2
app/src/main/java/eu/kanade/presentation/components/VerticalFastScroller.kt

@@ -121,11 +121,10 @@ fun VerticalFastScroller(
                     .offset { IntOffset(0, thumbOffsetY.roundToInt()) }
                     .then(
                         // Recompose opts
-                        if (!listState.isScrollInProgress) {
+                        if (isThumbVisible && !listState.isScrollInProgress) {
                             Modifier.draggable(
                                 interactionSource = dragInteractionSource,
                                 orientation = Orientation.Vertical,
-                                enabled = isThumbVisible,
                                 state = rememberDraggableState { delta ->
                                     val newOffsetY = thumbOffsetY + delta
                                     thumbOffsetY = newOffsetY.coerceIn(thumbTopPadding, thumbTopPadding + trackHeightPx)