Merge branch 'bugfix/87-show-pause-icon-when-playing' into 'develop'

#87: Show Pause icon when song is playing

Closes #87

See merge request funkwhale/funkwhale-android!81
This commit is contained in:
Ryan Harg 2021-08-29 13:56:19 +00:00
commit af2835d81e
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)