about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/List.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index 31fd0aa1d..62c91cec6 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -53,6 +53,7 @@ let List = React.forwardRef<ListMethods, ListProps>(
       headerOffset,
       style,
       progressViewOffset,
+      automaticallyAdjustsScrollIndicatorInsets = false,
       ...props
     },
     ref,
@@ -151,6 +152,9 @@ let List = React.forwardRef<ListMethods, ListProps>(
     return (
       <FlatList_INTERNAL
         {...props}
+        automaticallyAdjustsScrollIndicatorInsets={
+          automaticallyAdjustsScrollIndicatorInsets
+        }
         scrollIndicatorInsets={{top: headerOffset, right: 1}}
         contentOffset={contentOffset}
         refreshControl={refreshControl}