Fix closest ratio size lookup

pull/40/head
jsjem 7 years ago committed by GitHub
parent bcf21991bc
commit d502a7ae77
  1. 4
      camerafragment/src/main/java/com/github/florent37/camerafragment/internal/utils/CameraHelper.java

@ -251,7 +251,7 @@ public final class CameraHelper {
double ratio = (double) size.getHeight() / size.getWidth();
if (Math.abs(ratio - targetRatio) < MIN_TOLERANCE) MIN_TOLERANCE = ratio;
if (Math.abs(ratio - targetRatio) < MIN_TOLERANCE) MIN_TOLERANCE = Math.abs(ratio - targetRatio);
else continue;
if (Math.abs(size.getHeight() - targetHeight) < minDiff) {
@ -325,7 +325,7 @@ public final class CameraHelper {
double ratio = (double) size.getHeight() / size.getWidth();
if (Math.abs(ratio - targetRatio) < MIN_TOLERANCE) MIN_TOLERANCE = ratio;
if (Math.abs(ratio - targetRatio) < MIN_TOLERANCE) MIN_TOLERANCE = Math.abs(ratio - targetRatio);
else continue;
if (Math.abs(size.getHeight() - targetHeight) < minDiff) {

Loading…
Cancel
Save