Skip to content

Commit

Permalink
Make entries already in library less visible in browse (#1675)
Browse files Browse the repository at this point in the history
* Make entries already in library less visible in browse

* Make entries already in library less visible in browse by default
  • Loading branch information
Hived authored Nov 7, 2023
1 parent 0efcd9a commit 6ed4ff0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ class BrowseSourceGridHolder(
.setParameter(MangaCoverFetcher.useCustomCover, false)
.build()
Coil.imageLoader(view.context).enqueue(request)

binding.coverThumbnail.alpha = if (manga.favorite) 0.34f else 1.0f
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ class BrowseSourceListHolder(
.setParameter(MangaCoverFetcher.useCustomCover, false)
.build()
Coil.imageLoader(view.context).enqueue(request)

binding.coverThumbnail.alpha = if (manga.favorite) 0.34f else 1.0f
}
}
}

0 comments on commit 6ed4ff0

Please sign in to comment.