Skip to content

Commit e0a69e8

Browse files
authored
Make comment section take up full vertical space
1 parent 4c82e8b commit e0a69e8

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)