Skip to content

Commit

Permalink
Shorter Chapter List in Reader (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
Riztard authored Oct 29, 2023
1 parent df546fd commit 674d95b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package eu.kanade.presentation.reader

import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.defaultMinSize
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.lazy.rememberLazyListState
Expand Down Expand Up @@ -41,7 +41,7 @@ fun ChapterListDialog(
) {
LazyColumn(
state = state,
modifier = Modifier.defaultMinSize(minHeight = 200.dp),
modifier = Modifier.heightIn(min = 200.dp, max = 500.dp),
contentPadding = PaddingValues(vertical = 16.dp),
) {
items(
Expand Down

0 comments on commit 674d95b

Please sign in to comment.