ソースを参照

Adjust bookmarked chapter styling in Updates

To match updated styling in manga screen.
arkon 2 年 前
コミット
0f45907144

+ 0 - 1
app/src/main/java/eu/kanade/presentation/more/settings/widget/AppThemePreferenceWidget.kt

@@ -109,7 +109,6 @@ private fun AppThemesList(
                         .fillMaxWidth()
                         .padding(top = 8.dp)
                         .secondaryItemAlpha(),
-                    color = MaterialTheme.colorScheme.onSurface,
                     textAlign = TextAlign.Center,
                     maxLines = 2,
                     style = MaterialTheme.typography.bodyMedium,

+ 0 - 8
app/src/main/java/eu/kanade/presentation/updates/UpdatesUiItem.kt

@@ -176,15 +176,8 @@ fun UpdatesUiItem(
         ) {
             val bookmark = remember(update.bookmark) { update.bookmark }
             val read = remember(update.read) { update.read }
-
             val textAlpha = remember(read) { if (read) ReadItemAlpha else 1f }
 
-            val secondaryTextColor = if (bookmark && !read) {
-                MaterialTheme.colorScheme.primary
-            } else {
-                MaterialTheme.colorScheme.onSurface
-            }
-
             Text(
                 text = update.mangaTitle,
                 maxLines = 1,
@@ -207,7 +200,6 @@ fun UpdatesUiItem(
                 Text(
                     text = update.chapterName,
                     maxLines = 1,
-                    color = secondaryTextColor,
                     style = MaterialTheme.typography.bodySmall,
                     overflow = TextOverflow.Ellipsis,
                     onTextLayout = { textHeight = it.size.height },