summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-08-29 16:47:46 -0700
committerJohn Hoford <hoford@google.com>2013-08-29 17:01:32 -0700
commitae068f80895d7d075064a5ded59069425b72271f (patch)
tree3a71026419b82f15b7d259dda41ab5cd898c0b31 /src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java
parent834efce0da12e6a4664c3f3c63bfd2e77b6e750a (diff)
downloadandroid_packages_apps_Gallery2-ae068f80895d7d075064a5ded59069425b72271f.tar.gz
android_packages_apps_Gallery2-ae068f80895d7d075064a5ded59069425b72271f.tar.bz2
android_packages_apps_Gallery2-ae068f80895d7d075064a5ded59069425b72271f.zip
small ui cleanups for color border
Change-Id: I76142afdb44a45936bf32a36b3b45ffdc729308e
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java
index d4b4e87fa..f3245739f 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterDrawRepresentation.java
@@ -205,6 +205,7 @@ public class FilterDrawRepresentation extends FilterRepresentation {
public void useParametersFrom(FilterRepresentation a) {
if (a instanceof FilterDrawRepresentation) {
FilterDrawRepresentation representation = (FilterDrawRepresentation) a;
+ mParamColor.copyPalletFrom(representation.mParamColor);
try {
if (representation.mCurrent != null) {
mCurrent = (StrokeData) representation.mCurrent.clone();