#87: Show Pause icon when song is playing

This commit is contained in:
Ryan Harg 2021-08-29 15:48:13 +02:00
parent 4c6dde3ee4
commit 1e1e34cae4
No known key found for this signature in database
GPG Key ID: 89106F3A84E6958C
2 changed files with 2 additions and 1 deletions

View File

@ -349,7 +349,7 @@ class MainActivity : AppCompatActivity() {
when (message.playing) {
true -> {
binding.nowPlayingContainer?.nowPlayingToggle?.icon = getDrawable(R.drawable.pause)
binding.nowPlayingContainer?.nowPlayingToggle?.icon = getDrawable(R.drawable.pause)
binding.nowPlayingContainer?.nowPlayingDetailsToggle?.icon = getDrawable(R.drawable.pause)
}
false -> {

View File

@ -0,0 +1 @@
Show pause icon when song is playing (#87)