Fixed inverted bookmark drawable on reader
This commit is contained in:
parent
7071abb5aa
commit
f717900a89
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ class ReaderChapterItem(val chapter: Chapter, val manga: Manga, val isCurrent: B
|
|||
chapterSubtitle.setTextColor(chapterColor)
|
||||
|
||||
bookmarkImage.setImageResource(
|
||||
if (chapter.bookmark) R.drawable.ic_bookmark_border_24dp
|
||||
else R.drawable.ic_bookmark_24dp
|
||||
if (chapter.bookmark) R.drawable.ic_bookmark_24dp
|
||||
else R.drawable.ic_bookmark_border_24dp
|
||||
)
|
||||
|
||||
val drawableColor = ChapterUtil.bookmarkColor(itemView.context, chapter)
|
||||
|
|
Reference in a new issue