Minor UI changes (#75)

* Revert transparent cards from #61
* Don't show queue during playback if playing the final item
* Fix nav drawer collection page from showing everything recursively
* Immediately hide the skip intro button when pressed
This commit is contained in:
damontecres 2025-10-27 10:17:50 -04:00 committed by GitHub
parent 89b9364807
commit 1a7684b458
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ class Playlist(
fun hasPrevious(): Boolean = index > 0
fun hasNext(): Boolean = index < items.size
fun hasNext(): Boolean = (index + 1) < items.size
fun getPreviousAndReverse(): BaseItem = items[--index]