diff options
| author | 2014-09-27 00:03:02 +0200 | |
|---|---|---|
| committer | 2014-09-28 20:15:36 +0000 | |
| commit | 2bc5406d7aa78a24f907e45690525e6633a78f21 (patch) | |
| tree | c68196cc8a566142a7343e5112888889295b88f3 | |
| parent | 485f2095f8ba695b88331c01a2de468b5616a5d7 (diff) | |
Fix overdraw
Bug: 17673806
Change-Id: Ia34602122a47e5ffc69dce3580cfab52bc9f535f
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/ScrimView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ScrimView.java b/packages/SystemUI/src/com/android/systemui/statusbar/ScrimView.java index 23534255db11..e7c010945089 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/ScrimView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/ScrimView.java @@ -33,7 +33,7 @@ import android.view.animation.Interpolator; public class ScrimView extends View { private int mScrimColor; - private boolean mIsEmpty; + private boolean mIsEmpty = true; private boolean mDrawAsSrc; private float mViewAlpha = 1.0f; private ValueAnimator mAlphaAnimator; |