mirror of
https://github.com/cmclark00/TetriStats.git
synced 2025-05-17 22:55:21 +01:00
Add comma separator to average score display in stats screen
Some checks failed
Build and Release Android APK / build (push) Has been cancelled
Some checks failed
Build and Release Android APK / build (push) Has been cancelled
This commit is contained in:
parent
64fccdb249
commit
53a9d84f13
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class StatsFragment : Fragment() {
|
|||
}
|
||||
|
||||
viewModel.averageScore.observe(viewLifecycleOwner) { average ->
|
||||
binding.textViewAverageScore.text = "%.0f".format(average)
|
||||
binding.textViewAverageScore.text = "%,.0f".format(average)
|
||||
}
|
||||
|
||||
viewModel.highScore.observe(viewLifecycleOwner) { highScore ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue