summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/ui
diff options
context:
space:
mode:
authorByunghun Jeon <bjeon@codeaurora.org>2014-10-01 16:43:19 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2014-11-17 17:54:51 -0800
commit74dbd7a70f07f6c3e0e1e3f9a83d7102c681d076 (patch)
tree36a91986b528647a52259173ea80a5f5f125bab7 /src/com/android/camera/ui
parent41d18fed018678492323150c661f2b9f6c8931a8 (diff)
downloadandroid_packages_apps_Snap-74dbd7a70f07f6c3e0e1e3f9a83d7102c681d076.tar.gz
android_packages_apps_Snap-74dbd7a70f07f6c3e0e1e3f9a83d7102c681d076.tar.bz2
android_packages_apps_Snap-74dbd7a70f07f6c3e0e1e3f9a83d7102c681d076.zip
SnapdragonCamera: Update UI with new icons and setting menus
Updating icons and settings menus for SnapdragonCamera UI Change-Id: Id7db7d624a517f76f5bd5941ed113e8d13d6aca1
Diffstat (limited to 'src/com/android/camera/ui')
-rw-r--r--src/com/android/camera/ui/CameraControls.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/camera/ui/CameraControls.java b/src/com/android/camera/ui/CameraControls.java
index 5c305acd8..aeaa0d4e7 100644
--- a/src/com/android/camera/ui/CameraControls.java
+++ b/src/com/android/camera/ui/CameraControls.java
@@ -234,7 +234,7 @@ public class CameraControls extends RotatableLayout {
Rect shutter = new Rect();
topRight(mPreview, l, t, r, b);
center(mShutter, l, t, r, b, orientation, rotation, shutter, SHUTTER_INDEX);
- mSize = Math.max(shutter.right - shutter.left, shutter.bottom - shutter.top);
+ mSize = (int) (Math.max(shutter.right - shutter.left, shutter.bottom - shutter.top) * 1.2f);
center(mBackgroundView, l, t, r, b, orientation, rotation, new Rect(), -1);
mBackgroundView.setVisibility(View.GONE);
setLocation(r - l, b - t);