#76: fixed Shuffle and Clear queue actions in landscape mode.

This commit is contained in:
Antoine POPINEAU 2020-09-05 16:12:22 +02:00
parent 1380d1d2b9
commit 64ea222f08
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
1 changed files with 8 additions and 0 deletions

View File

@ -40,6 +40,14 @@ class LandscapeQueueFragment : Fragment() {
queue?.visibility = View.GONE
placeholder?.visibility = View.VISIBLE
queue_shuffle.setOnClickListener {
CommandBus.send(Command.ShuffleQueue)
}
queue_clear.setOnClickListener {
CommandBus.send(Command.ClearQueue)
}
refresh()
}