summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java')
-rw-r--r--src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java b/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
index 4bc49c5fe..2c697351d 100644
--- a/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
+++ b/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
@@ -29,7 +29,7 @@ import com.android.gallery3d.photoeditor.PhotoView;
public class EffectToolFactory {
public enum ScalePickerType {
- FILLLIGHT, HIGHLIGHT, SHADOW, COLOR, GENERIC
+ LIGHT, SHADOW, COLOR, GENERIC
}
private final ViewGroup effectToolPanel;
@@ -59,11 +59,8 @@ public class EffectToolFactory {
private int getScalePickerBackground(ScalePickerType type) {
switch (type) {
- case FILLLIGHT:
- return R.drawable.photoeditor_scale_seekbar_filllight;
-
- case HIGHLIGHT:
- return R.drawable.photoeditor_scale_seekbar_highlight;
+ case LIGHT:
+ return R.drawable.photoeditor_scale_seekbar_light;
case SHADOW:
return R.drawable.photoeditor_scale_seekbar_shadow;