recycler: fix inconsistencies

Fix inconsistencies that the previous commit introduced.
This commit is contained in:
Alexander Capehart 2022-11-22 13:33:43 -07:00
parent b891ee1fe6
commit 361ca422e3
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 1 additions and 2 deletions

View file

@ -59,7 +59,7 @@ class HomeViewModel(application: Application) :
private val _genres = MutableStateFlow(listOf<Genre>())
val genres: StateFlow<List<Genre>>
get() = _genres
var tabs: List<MusicMode> = visibleTabs
private set

View file

@ -19,7 +19,6 @@ package org.oxycblt.auxio.ui.recycler
import android.view.View
import androidx.recyclerview.widget.RecyclerView
import org.oxycblt.auxio.music.Music
import org.oxycblt.auxio.util.logW
/**