summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-09-18 10:02:53 -0700
committerJohn Hoford <hoford@google.com>2013-09-18 10:02:53 -0700
commit9029a469b47605420454e0c74d46adeccf4ef94a (patch)
tree423a2417e0817afc69fdbd1a7f1833fe9944f9f2 /src
parentb17765a3e9ead269493d7a851a21af3622931c40 (diff)
downloadandroid_packages_apps_Gallery2-9029a469b47605420454e0c74d46adeccf4ef94a.tar.gz
android_packages_apps_Gallery2-9029a469b47605420454e0c74d46adeccf4ef94a.tar.bz2
android_packages_apps_Gallery2-9029a469b47605420454e0c74d46adeccf4ef94a.zip
fix grad filter brightness value stuck at -100
Change-Id: I8e0fa1e0b9537fc530fecb78aac019c220af7ae2
Diffstat (limited to 'src')
-rw-r--r--src/com/android/gallery3d/filtershow/editors/EditorGrad.java3
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterGradRepresentation.java2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/gallery3d/filtershow/editors/EditorGrad.java b/src/com/android/gallery3d/filtershow/editors/EditorGrad.java
index 4be435f8c..80c430379 100644
--- a/src/com/android/gallery3d/filtershow/editors/EditorGrad.java
+++ b/src/com/android/gallery3d/filtershow/editors/EditorGrad.java
@@ -191,13 +191,13 @@ public class EditorGrad extends ParametricEditor
public ParamAdapter(int seekId, int textId, LinearLayout layout, int mode) {
mSlider = (SeekBar) layout.findViewById(seekId);
mTextView = (TextView) layout.findViewById(textId);
- mSlider.setOnSeekBarChangeListener(this);
mSlider.setMax(mMax - mMin);
mMode = mode;
FilterGradRepresentation rep = getGradRepresentation();
if (rep != null){
updateValues(rep);
}
+ mSlider.setOnSeekBarChangeListener(this);
}
public void updateValues(FilterGradRepresentation rep) {
@@ -428,5 +428,4 @@ public class EditorGrad extends ParametricEditor
public void copyFrom(Parameter src) {
}
-
}
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterGradRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterGradRepresentation.java
index 354fa5925..a3a7e9555 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterGradRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterGradRepresentation.java
@@ -114,7 +114,7 @@ public class FilterGradRepresentation extends FilterRepresentation
p.yPos1 = 100;
p.xPos2 = -1;
p.yPos2 = 100;
- p.brightness = 40;
+ p.brightness = -50;
p.contrast = 0;
p.saturation = 0;
mBands.add(0, p);