Skip to content

Commit

Permalink
Merge pull request #3478 from Bnyro/master
Browse files Browse the repository at this point in the history
Fix playback speed preference summary
  • Loading branch information
Bnyro authored Apr 2, 2023
2 parents 26335eb + 061ea34 commit e597cbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SliderPreference(
}

override fun getSummary(): CharSequence {
return prefValue.toString()
return prefValue.round(2).toString()
}

override fun onClick() {
Expand Down

0 comments on commit e597cbe

Please sign in to comment.