mirror of
https://github.com/mastodon/mastodon-android.git
synced 2025-02-08 07:58:54 +01:00
Fix
This commit is contained in:
parent
0b983affcb
commit
6d0f38eca6
@ -278,13 +278,13 @@ public class ZoomPanView extends FrameLayout implements ScaleGestureDetector.OnS
|
||||
float scaledWidth=child.getWidth()*targetScale;
|
||||
float scaledHeight=child.getHeight()*targetScale;
|
||||
if(scaledWidth>getWidth()){
|
||||
minTransX=(getWidth()-scaledWidth)/2f;
|
||||
minTransX=(getWidth()-Math.round(scaledWidth))/2f;
|
||||
maxTransX=-minTransX;
|
||||
}else{
|
||||
minTransX=maxTransX=0f;
|
||||
}
|
||||
if(scaledHeight>getHeight()){
|
||||
minTransY=(getHeight()-scaledHeight)/2f;
|
||||
minTransY=(getHeight()-Math.round(scaledHeight))/2f;
|
||||
maxTransY=-minTransY;
|
||||
}else{
|
||||
minTransY=maxTransY=0f;
|
||||
|
Loading…
x
Reference in New Issue
Block a user