summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kolb <kolby@google.com>2013-03-14 22:09:15 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-03-14 22:09:16 +0000
commitae42bc21941565920db450ea68a7c5de3433196d (patch)
tree1a3d84e86f2dc970488f2261219b28414a416936
parentb0c811a0a56de7cee718ce17ff8273c845d5007d (diff)
parent7e0ee8bbc790e2eef67f4bbe0cd1c5550d055ea9 (diff)
downloadandroid_packages_apps_Snap-ae42bc21941565920db450ea68a7c5de3433196d.tar.gz
android_packages_apps_Snap-ae42bc21941565920db450ea68a7c5de3433196d.tar.bz2
android_packages_apps_Snap-ae42bc21941565920db450ea68a7c5de3433196d.zip
Merge "Fix exposure compensation" into gb-ub-photos-bryce
-rw-r--r--src/com/android/camera/CameraSettings.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/camera/CameraSettings.java b/src/com/android/camera/CameraSettings.java
index 64f3681de..7c7ed389e 100644
--- a/src/com/android/camera/CameraSettings.java
+++ b/src/com/android/camera/CameraSettings.java
@@ -235,8 +235,8 @@ public class CameraSettings {
private void buildExposureCompensation(
PreferenceGroup group, IconListPreference exposure) {
- int max = Math.min(3, mParameters.getMaxExposureCompensation());
- int min = Math.max(-3, mParameters.getMinExposureCompensation());
+ int max = mParameters.getMaxExposureCompensation();
+ int min = mParameters.getMinExposureCompensation();
if (max == 0 && min == 0) {
removePreference(group, exposure.getKey());
return;
@@ -244,8 +244,8 @@ public class CameraSettings {
float step = mParameters.getExposureCompensationStep();
// show only integer values for exposure compensation
- int maxValue = (int) FloatMath.floor(max * step);
- int minValue = (int) FloatMath.ceil(min * step);
+ int maxValue = Math.min(3, (int) FloatMath.floor(max * step));
+ int minValue = Math.max(-3, (int) FloatMath.ceil(min * step));
CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
int[] icons = new int[maxValue - minValue + 1];