Removed seperate line on folder list

This commit is contained in:
h4h13 2019-07-30 09:22:24 +05:30
parent f3c0bee131
commit 33ed4fe4c3
2 changed files with 18 additions and 32 deletions

View file

@ -54,16 +54,6 @@ class SongFileAdapter(private val activity: AppCompatActivity, private var dataS
holder.itemView.isActivated = isChecked(file)
if (holder.adapterPosition == itemCount - 1) {
if (holder.shortSeparator != null) {
holder.shortSeparator!!.visibility = View.GONE
}
} else {
if (holder.shortSeparator != null) {
holder.shortSeparator!!.visibility = View.VISIBLE
}
}
if (holder.title != null) {
holder.title!!.text = getFileTitle(file)
}