We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de08edb + 3c23fb0 commit 1030e09Copy full SHA for 1030e09
1 file changed
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -599,8 +599,7 @@ public void onChange(final boolean selfChange) {
599
*/
600
private void setupPlayerSeekOverlay() {
601
binding.fastSeekOverlay
602
- .seekSecondsSupplier(
603
- () -> (int) (retrieveSeekDurationFromPreferences(this) / 1000.0f))
+ .seekSecondsSupplier(() -> retrieveSeekDurationFromPreferences(this) / 1000)
604
.performListener(new PlayerFastSeekOverlay.PerformListener() {
605
606
@Override
@@ -613,6 +612,7 @@ public void onDoubleTapEnd() {
613
612
animate(binding.fastSeekOverlay, false, SEEK_OVERLAY_DURATION);
614
}
615
+ @NonNull
616
617
public FastSeekDirection getFastSeekDirection(
618
@NonNull final DisplayPortion portion
0 commit comments