mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-09 16:11:20 +02:00
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:
parent
89b9364807
commit
1a7684b458
4 changed files with 4 additions and 4 deletions
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue