diff options
| author | 2010-11-15 17:01:54 -0800 | |
|---|---|---|
| committer | 2010-11-15 17:01:54 -0800 | |
| commit | f942b7cbca8df6fbe44d73609662c47a480e523c (patch) | |
| tree | bf383354a91858ad5602c8b2d42fd38a73a5c1f4 | |
| parent | c028a5ee7e6998f8ab0239baf91634eadad021e8 (diff) | |
| parent | ebefea465893529230157d4a857ef52c3fb545e7 (diff) | |
Merge "Fix issue where Launcher was not getting redrawn"
| -rw-r--r-- | core/java/android/view/View.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index be49255ee186..e6eb46e5a160 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -6304,12 +6304,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility } final AttachInfo ai = mAttachInfo; final ViewParent p = mParent; - if (p != null && ai != null && ai.mHardwareAccelerated) { - // fast-track for GL-enabled applications; just invalidate the whole hierarchy - // with a null dirty rect, which tells the ViewRoot to redraw everything - p.invalidateChild(this, null); - return; - } + if (p != null && ai != null) { final Rect r = ai.mTmpInvalRect; r.set(0, 0, mRight - mLeft, mBottom - mTop); |