瀏覽代碼

Use proper content color for filter icon in library toolbar

arkon 2 年之前
父節點
當前提交
7818885406
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      app/src/main/java/eu/kanade/presentation/library/components/LibraryToolbar.kt

+ 2 - 1
app/src/main/java/eu/kanade/presentation/library/components/LibraryToolbar.kt

@@ -77,7 +77,6 @@ fun LibraryRegularToolbar(
     scrollBehavior: TopAppBarScrollBehavior?,
 ) {
     val pillAlpha = if (isSystemInDarkTheme()) 0.12f else 0.08f
-    val filterTint = if (hasFilters) MaterialTheme.colorScheme.active else LocalContentColor.current
     SearchToolbar(
         titleContent = {
             Row(verticalAlignment = Alignment.CenterVertically) {
@@ -99,9 +98,11 @@ fun LibraryRegularToolbar(
         searchQuery = searchQuery,
         onChangeSearchQuery = onChangeSearchQuery,
         actions = {
+            val filterTint = if (hasFilters) MaterialTheme.colorScheme.active else LocalContentColor.current
             IconButton(onClick = onClickFilter) {
                 Icon(Icons.Outlined.FilterList, contentDescription = stringResource(R.string.action_filter), tint = filterTint)
             }
+
             OverflowMenu { closeMenu ->
                 DropdownMenuItem(
                     text = { Text(text = stringResource(R.string.pref_category_library_update)) },