1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-05-20 04:12:11 +00:00

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
This commit is contained in:
Tobi
2026-03-17 17:04:29 +01:00
committed by GitHub
@@ -59,7 +59,9 @@ private fun CommentSection(
LazyColumnThemedScrollbar(state = state) {
LazyColumn(
modifier = Modifier.nestedScroll(nestedScrollInterop),
modifier = Modifier
.fillMaxSize()
.nestedScroll(nestedScrollInterop),
state = state
) {
when (uiState) {