From 6066d42c64d89e1722ec099638d9979619282215 Mon Sep 17 00:00:00 2001 From: Syer10 Date: Fri, 18 Nov 2022 03:43:54 +0000 Subject: [PATCH] Automatic Lint --- .../kotlin/ca/gosyer/jui/uicore/components/Scrollbar.kt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ui-core/src/commonMain/kotlin/ca/gosyer/jui/uicore/components/Scrollbar.kt b/ui-core/src/commonMain/kotlin/ca/gosyer/jui/uicore/components/Scrollbar.kt index b4e6ffa7..8a25bb12 100644 --- a/ui-core/src/commonMain/kotlin/ca/gosyer/jui/uicore/components/Scrollbar.kt +++ b/ui-core/src/commonMain/kotlin/ca/gosyer/jui/uicore/components/Scrollbar.kt @@ -75,7 +75,9 @@ fun rememberVerticalScrollbarAdapter( gridCells: GridCells, arrangement: Arrangement.Vertical? = null ): ScrollbarAdapter = realRememberVerticalScrollbarAdapter( - scrollState, gridCells, arrangement + scrollState, + gridCells, + arrangement ) @Composable @@ -84,7 +86,9 @@ fun rememberHorizontalScrollbarAdapter( gridCells: GridCells, arrangement: Arrangement.Horizontal? = null ): ScrollbarAdapter = realRememberHorizontalScrollbarAdapter( - scrollState, gridCells, arrangement + scrollState, + gridCells, + arrangement ) @Composable