Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2869e952 authored by Andreas Huber's avatar Andreas Huber
Browse files

Fix a typo in VideoView.java that disabled the seek-back button by default.

Change-Id: I23a9423b20646529b652e23349266a3291981484
related-to-bug: 2498317
parent a9fb0a24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -291,7 +291,7 @@ public class VideoView extends SurfaceView implements MediaPlayerControl {
                mCanSeekForward = !data.has(Metadata.SEEK_FORWARD_AVAILABLE)
                        || data.getBoolean(Metadata.SEEK_FORWARD_AVAILABLE);
            } else {
                mCanPause = mCanSeekForward = mCanSeekForward = true;
                mCanPause = mCanSeekBack = mCanSeekForward = true;
            }

            if (mOnPreparedListener != null) {