mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-10 12:47:26 +01:00
Fix Settings->Video->Easier to Watch in Full Screen not working in card layout 2.
This commit is contained in:
parent
2ebc797a3b
commit
33c473824b
@ -11,7 +11,6 @@ import android.graphics.drawable.Drawable;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@ -4129,7 +4128,7 @@ public class PostRecyclerViewAdapter extends PagingDataAdapter<Post, RecyclerVie
|
||||
previewImageView.setOnClickListener(view -> fullscreenButton.performClick());
|
||||
|
||||
videoPlayer.setOnClickListener(view -> {
|
||||
if (videoPlayer.isControllerVisible()) {
|
||||
if (mEasierToWatchInFullScreen && videoPlayer.isControllerVisible()) {
|
||||
fullscreenButton.performClick();
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user