소스 검색

Fix close button tint in extension screen (#7154)

CVIUS 2 년 전
부모
커밋
f2a478288a
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt

+ 5 - 1
app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt

@@ -351,7 +351,11 @@ fun ExtensionItemActions(
         }
         if (isIdle.not()) {
             IconButton(onClick = { onClickItemCancel(extension) }) {
-                Icon(Icons.Default.Close, "")
+                Icon(
+                    imageVector = Icons.Default.Close,
+                    contentDescription = "",
+                    tint = MaterialTheme.colorScheme.onBackground,
+                )
             }
         }
     }