This commit is contained in:
Grishka 2023-09-17 10:26:27 +03:00 committed by LucasGGamerM
parent e0165a25f4
commit 96f0817c20
1 changed files with 2 additions and 0 deletions

View File

@ -878,6 +878,8 @@ public class PhotoViewer implements ZoomPanView.Listener{
@Override
public void onVideoSizeChanged(MediaPlayer mp, int width, int height){
if(width<=0 || height<=0)
return;
FrameLayout.LayoutParams params=(FrameLayout.LayoutParams) wrap.getLayoutParams();
params.width=width;
params.height=height;