diff options
author | Gilles Debunne <debunne@google.com> | 2011-11-29 09:57:21 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-29 09:57:21 -0800 |
commit | 7423fb5352c3e02979f653267974b5de5c4f90c7 (patch) | |
tree | 007c00e6037604e089a2472e9810f81dc6069dac /src | |
parent | a01902ffbd51d4952efb0794853a1c0dc2f8c353 (diff) | |
parent | c786952c9d2277a3cf631ab425dcfaf6dee6a9ea (diff) | |
download | packages_apps_Trebuchet-7423fb5352c3e02979f653267974b5de5c4f90c7.tar.gz packages_apps_Trebuchet-7423fb5352c3e02979f653267974b5de5c4f90c7.tar.bz2 packages_apps_Trebuchet-7423fb5352c3e02979f653267974b5de5c4f90c7.zip |
Merge "Restoring mLayout has private in TextView"
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/launcher2/BubbleTextView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher2/BubbleTextView.java b/src/com/android/launcher2/BubbleTextView.java index dc498a403..01417bf37 100644 --- a/src/com/android/launcher2/BubbleTextView.java +++ b/src/com/android/launcher2/BubbleTextView.java @@ -134,7 +134,7 @@ public class BubbleTextView extends TextView { mPressedOrFocusedBackground = null; } if (isFocused()) { - if (mLayout == null) { + if (getLayout() == null) { // In some cases, we get focus before we have been layed out. Set the // background to null so that it will get created when the view is drawn. mPressedOrFocusedBackground = null; |