From db08da3bb1118fd1a02fe981480be639b7d8c55f Mon Sep 17 00:00:00 2001 From: srowen Date: Sat, 24 Sep 2011 16:43:04 +0000 Subject: [PATCH] Reticle is getting quite small with new larger boundaries for tablets -- go to 60%, to help focus too git-svn-id: https://zxing.googlecode.com/svn/trunk@1930 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- .../com/google/zxing/client/android/camera/CameraManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/com/google/zxing/client/android/camera/CameraManager.java b/android/src/com/google/zxing/client/android/camera/CameraManager.java index dd47698cd..bf4ca215e 100755 --- a/android/src/com/google/zxing/client/android/camera/CameraManager.java +++ b/android/src/com/google/zxing/client/android/camera/CameraManager.java @@ -237,13 +237,13 @@ public final class CameraManager { return null; } Point screenResolution = configManager.getScreenResolution(); - int width = screenResolution.x * 3 / 4; + int width = screenResolution.x * 3 / 5; if (width < MIN_FRAME_WIDTH) { width = MIN_FRAME_WIDTH; } else if (width > MAX_FRAME_WIDTH) { width = MAX_FRAME_WIDTH; } - int height = screenResolution.y * 3 / 4; + int height = screenResolution.y * 3 / 5; if (height < MIN_FRAME_HEIGHT) { height = MIN_FRAME_HEIGHT; } else if (height > MAX_FRAME_HEIGHT) {