Remove invalidateItemDecorations call.

fork-5.53.8
Alex Hart 2021-11-12 09:39:34 -04:00
rodzic 6fc9db0aff
commit 68e0a30c92
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -111,13 +111,13 @@ public final class GiphyMp4ProjectionRecycler implements GiphyMp4PlaybackControl
holder.show(); holder.show();
holder.setOnPlaybackReady(() -> { holder.setOnPlaybackReady(() -> {
giphyMp4Playable.hideProjectionArea(); giphyMp4Playable.hideProjectionArea();
parent.invalidateItemDecorations(); parent.invalidate();
}); });
holder.playContent(giphyMp4Playable.getMediaItem(), giphyMp4Playable.getPlaybackPolicyEnforcer()); holder.playContent(giphyMp4Playable.getMediaItem(), giphyMp4Playable.getPlaybackPolicyEnforcer());
} else { } else {
holder.setOnPlaybackReady(() -> { holder.setOnPlaybackReady(() -> {
giphyMp4Playable.hideProjectionArea(); giphyMp4Playable.hideProjectionArea();
parent.invalidateItemDecorations(); parent.invalidate();
}); });
} }
} }