summaryrefslogtreecommitdiffstats
path: root/src/com
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
commit2ef853833a2d7fed29b3a46e526fb8479422064e (patch)
tree557b9ad681453da0b05b324f20e3926f18d7426e /src/com
parent7b7b5dd19859ff88519b51936bdb5d001f1853e2 (diff)
downloadandroid_packages_apps_Snap-2ef853833a2d7fed29b3a46e526fb8479422064e.tar.gz
android_packages_apps_Snap-2ef853833a2d7fed29b3a46e526fb8479422064e.tar.bz2
android_packages_apps_Snap-2ef853833a2d7fed29b3a46e526fb8479422064e.zip
small ui changes based on UX/PM feedback
bug:8664728 Change-Id: I4e0651c011b9a6c4742d86c898a0821187f43043
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterBasicRepresentation.java3
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterImageBorderRepresentation.java2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterBasicRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterBasicRepresentation.java
index 3ef1e09ed..28ccf7d8f 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterBasicRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterBasicRepresentation.java
@@ -135,7 +135,8 @@ public class FilterBasicRepresentation extends FilterRepresentation implements P
@Override
public String getStateRepresentation() {
- return "" + getValue();
+ int val = getValue();
+ return ((val > 0) ? "+" : "") + val;
}
@Override
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterImageBorderRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterImageBorderRepresentation.java
index 5257e7793..f67254c63 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterImageBorderRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterImageBorderRepresentation.java
@@ -70,7 +70,7 @@ public class FilterImageBorderRepresentation extends FilterRepresentation {
@Override
public int getTextId() {
- return R.string.borders;
+ return R.string.none;
}
public boolean allowsMultipleInstances() {