mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-23 21:27:40 +03:00
Hide subtitle in migration list of sources if no language set (i.e. uninstalled source)
This commit is contained in:
parent
5c8006f9b7
commit
ae42f59102
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class SourceHolder(view: View, val adapter: SourceAdapter) :
|
|||
val source = item.source
|
||||
|
||||
binding.title.text = source.name
|
||||
binding.subtitle.isVisible = true
|
||||
binding.subtitle.isVisible = source.lang != ""
|
||||
binding.subtitle.text = LocaleHelper.getDisplayName(source.lang)
|
||||
|
||||
itemView.post {
|
||||
|
|
Loading…
Reference in a new issue