From 6d3a3b3f39a6ac4736ff06628335cbd4c1fd9e8e Mon Sep 17 00:00:00 2001 From: arkon Date: Sat, 7 Jan 2023 10:02:41 -0500 Subject: [PATCH] Adjust bookmarked chapter styling No longer tints the title and subtitle text depending on bookmarked state in favor of only showing a tinted bookmark icon regardless of read state. Closes #8839 --- .../manga/components/MangaChapterListItem.kt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/app/src/main/java/eu/kanade/presentation/manga/components/MangaChapterListItem.kt b/app/src/main/java/eu/kanade/presentation/manga/components/MangaChapterListItem.kt index 33ca32055..db458a8ed 100644 --- a/app/src/main/java/eu/kanade/presentation/manga/components/MangaChapterListItem.kt +++ b/app/src/main/java/eu/kanade/presentation/manga/components/MangaChapterListItem.kt @@ -62,11 +62,6 @@ fun MangaChapterListItem( .padding(start = 16.dp, top = 12.dp, end = 8.dp, bottom = 12.dp), ) { Column(modifier = Modifier.weight(1f)) { - val textColor = if (bookmark && !read) { - MaterialTheme.colorScheme.primary - } else { - MaterialTheme.colorScheme.onSurface - } val textAlpha = remember(read) { if (read) ReadItemAlpha else 1f } val textSubtitleAlpha = remember(read) { if (read) ReadItemAlpha else SecondaryItemAlpha } @@ -84,7 +79,6 @@ fun MangaChapterListItem( } Text( text = title, - color = textColor, style = MaterialTheme.typography.bodyMedium, maxLines = 1, overflow = TextOverflow.Ellipsis, @@ -95,8 +89,7 @@ fun MangaChapterListItem( Spacer(modifier = Modifier.height(6.dp)) Row(modifier = Modifier.alpha(textSubtitleAlpha)) { ProvideTextStyle( - value = MaterialTheme.typography.bodyMedium - .copy(color = textColor, fontSize = 12.sp), + value = MaterialTheme.typography.bodyMedium.copy(fontSize = 12.sp), ) { if (date != null) { Text(