summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/editors/ParametricEditor.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-04-29 07:30:33 -0700
committerJohn Hoford <hoford@google.com>2013-04-29 14:29:25 -0700
commit027c2681e8075dda5c83088532ac1f55d20130fd (patch)
treef57eb463985563af64bb27dd5a0e96c771fab02e /src/com/android/gallery3d/filtershow/editors/ParametricEditor.java
parent31eef2d6d3e4c72bf168b931c5123ed739401b99 (diff)
downloadandroid_packages_apps_Snap-027c2681e8075dda5c83088532ac1f55d20130fd.tar.gz
android_packages_apps_Snap-027c2681e8075dda5c83088532ac1f55d20130fd.tar.bz2
android_packages_apps_Snap-027c2681e8075dda5c83088532ac1f55d20130fd.zip
small ui changes based on UX/PM feedback
bug:8664728 Change-Id: I4e0651c011b9a6c4742d86c898a0821187f43043
Diffstat (limited to 'src/com/android/gallery3d/filtershow/editors/ParametricEditor.java')
-rw-r--r--src/com/android/gallery3d/filtershow/editors/ParametricEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/gallery3d/filtershow/editors/ParametricEditor.java b/src/com/android/gallery3d/filtershow/editors/ParametricEditor.java
index 02a1c7145..c23b90b33 100644
--- a/src/com/android/gallery3d/filtershow/editors/ParametricEditor.java
+++ b/src/com/android/gallery3d/filtershow/editors/ParametricEditor.java
@@ -93,12 +93,12 @@ public class ParametricEditor extends Editor {
if (mShowParameter == SHOW_VALUE_INT & useCompact(context)) {
if (getLocalRepresentation() instanceof FilterBasicRepresentation) {
FilterBasicRepresentation interval = (FilterBasicRepresentation) getLocalRepresentation();
- apply += " " + effectName + " " + interval.getStateRepresentation();
+ apply += " " + effectName.toUpperCase() + " " + interval.getStateRepresentation();
} else {
- apply += " " + effectName + " " + parameterValue;
+ apply += " " + effectName.toUpperCase() + " " + parameterValue;
}
} else {
- apply += " " + effectName;
+ apply += " " + effectName.toUpperCase();
}
return apply;
}