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.
1 parent a3f99bd commit 3c23fb0Copy full SHA for 3c23fb0
1 file changed
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -593,8 +593,7 @@ public void onChange(final boolean selfChange) {
593
*/
594
private void setupPlayerSeekOverlay() {
595
binding.fastSeekOverlay
596
- .seekSecondsSupplier(
597
- () -> (int) (retrieveSeekDurationFromPreferences(this) / 1000.0f))
+ .seekSecondsSupplier(() -> retrieveSeekDurationFromPreferences(this) / 1000)
598
.performListener(new PlayerFastSeekOverlay.PerformListener() {
599
600
@Override
@@ -607,6 +606,7 @@ public void onDoubleTapEnd() {
607
606
animate(binding.fastSeekOverlay, false, SEEK_OVERLAY_DURATION);
608
}
609
+ @NonNull
610
611
public FastSeekDirection getFastSeekDirection(
612
@NonNull final DisplayPortion portion
0 commit comments