From 2b31047b0daa6f2ae2feac508d31f4a196d53460 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 2 Jun 2026 19:41:48 +0300 Subject: [PATCH] Fix scrollbar behaviour in splitview (#10685) --- src/view/com/util/List.web.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/util/List.web.tsx b/src/view/com/util/List.web.tsx index eaea3c47a9..787ca9e278 100644 --- a/src/view/com/util/List.web.tsx +++ b/src/view/com/util/List.web.tsx @@ -345,7 +345,7 @@ function ListImpl( style, disableFullWindowScroll && { flex: 1, - overflowY: 'scroll', + overflowY: isWithinSplitView ? 'auto' : 'scroll', }, ]} ref={nativeRef as unknown as React.RefObject}>