Skip to content

Commit d0a0b4a

Browse files
authored
Merge pull request #13357 from WSU-CptS-481-Spring-2026/bug/refactor/13248-fix-no-comments-scroll
[Refactor] bugfix: make comment section take up full vertical space
2 parents 00208fa + e0a69e8 commit d0a0b4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/main/java/org/schabi/newpipe/ui/components/video/comment/CommentSection.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ private fun CommentSection(
5959

6060
LazyColumnThemedScrollbar(state = state) {
6161
LazyColumn(
62-
modifier = Modifier.nestedScroll(nestedScrollInterop),
62+
modifier = Modifier
63+
.fillMaxSize()
64+
.nestedScroll(nestedScrollInterop),
6365
state = state
6466
) {
6567
when (uiState) {

0 commit comments

Comments
 (0)