diff --git a/app/src/main/java/eu/kanade/presentation/history/components/HistoryItem.kt b/app/src/main/java/eu/kanade/presentation/history/components/HistoryItem.kt index 35e8b1cee..c5e76e1e6 100644 --- a/app/src/main/java/eu/kanade/presentation/history/components/HistoryItem.kt +++ b/app/src/main/java/eu/kanade/presentation/history/components/HistoryItem.kt @@ -169,6 +169,7 @@ fun HistoryItem( text = readProgress, maxLines = 1, color = LocalContentColor.current.copy(alpha = textAlpha), + style = MaterialTheme.typography.bodySmall, overflow = TextOverflow.Ellipsis, ) } diff --git a/app/src/main/java/eu/kanade/presentation/manga/components/ScanlatorFilterDialog.kt b/app/src/main/java/eu/kanade/presentation/manga/components/ScanlatorFilterDialog.kt index 978a81ab7..994ee0b1c 100644 --- a/app/src/main/java/eu/kanade/presentation/manga/components/ScanlatorFilterDialog.kt +++ b/app/src/main/java/eu/kanade/presentation/manga/components/ScanlatorFilterDialog.kt @@ -56,11 +56,13 @@ fun ScanlatorFilterDialog( Box { val state = rememberLazyListState() LazyColumn(state = state) { + // KMK --> items( items = sortedAvailableScanlators, contentType = { "item" }, key = { it }, ) { scanlator -> + // KMK <-- val isExcluded = mutableExcludedScanlators.contains(scanlator) Row( verticalAlignment = Alignment.CenterVertically,