From 654286d373878cef3fd28cbeeffb30ee3ee68962 Mon Sep 17 00:00:00 2001 From: Raghav Katyal Date: Fri, 5 Feb 2016 15:03:19 -0800 Subject: [PATCH] CB-10539: Commenting out the verySmallQvga maxResolution option --- src/windows/CameraProxy.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/windows/CameraProxy.js b/src/windows/CameraProxy.js index 2b320e0..7c752f7 100644 --- a/src/windows/CameraProxy.js +++ b/src/windows/CameraProxy.js @@ -713,8 +713,9 @@ function takePictureFromCameraWindows(successCallback, errorCallback, args) { if (targetWidth == -1 && targetHeight == -1) { maxRes = UIMaxRes.highestAvailable; } - else if (totalPixels <= 320 * 240) { - maxRes = UIMaxRes.verySmallQvga; + // Temp fix for CB-10539 + /*else if (totalPixels <= 320 * 240) { + maxRes = UIMaxRes.verySmallQvga;*/ } else if (totalPixels <= 640 * 480) { maxRes = UIMaxRes.smallVga; } else if (totalPixels <= 1024 * 768) {