Fixed "Changing the seeks duration does not update the displayed seconds"
This commit is contained in:
parent
54ef604569
commit
af79479716
2 changed files with 6 additions and 6 deletions
|
|
@ -586,7 +586,8 @@ public final class Player implements
|
|||
*/
|
||||
private void setupPlayerSeekOverlay() {
|
||||
binding.fastSeekOverlay
|
||||
.seekSeconds((int) (retrieveSeekDurationFromPreferences(this) / 1000.0f))
|
||||
.seekSecondsSupplier(
|
||||
() -> (int) (retrieveSeekDurationFromPreferences(this) / 1000.0f))
|
||||
.performListener(new PlayerFastSeekOverlay.PerformListener() {
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue