summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/BubbleTextView.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-08-02 16:41:28 -0700
committerDianne Hackborn <hackbod@google.com>2011-08-02 16:41:28 -0700
commit9b9d48f28926371eab94c425b1d54150732fa08f (patch)
tree7370033922cd195b6805fcfea2738042851897d9 /src/com/android/launcher2/BubbleTextView.java
parenteb5362e9326f6f2096cbd79adfb75f46c82bf4f0 (diff)
downloadandroid_packages_apps_Trebuchet-9b9d48f28926371eab94c425b1d54150732fa08f.tar.gz
android_packages_apps_Trebuchet-9b9d48f28926371eab94c425b1d54150732fa08f.tar.bz2
android_packages_apps_Trebuchet-9b9d48f28926371eab94c425b1d54150732fa08f.zip
Clear the bitmap associated with canvases.
Change-Id: Ic100a51960f8c0e7d8b3a107b64d23c7d70e6da9
Diffstat (limited to 'src/com/android/launcher2/BubbleTextView.java')
-rw-r--r--src/com/android/launcher2/BubbleTextView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/launcher2/BubbleTextView.java b/src/com/android/launcher2/BubbleTextView.java
index 476d06374..bd3a4bde5 100644
--- a/src/com/android/launcher2/BubbleTextView.java
+++ b/src/com/android/launcher2/BubbleTextView.java
@@ -200,6 +200,7 @@ public class BubbleTextView extends TextView implements VisibilityChangedBroadca
canvas.setBitmap(b);
drawWithPadding(canvas, padding);
mOutlineHelper.applyExtraThickExpensiveOutlineWithBlur(b, canvas, glowColor, outlineColor);
+ canvas.setBitmap(null);
return b;
}