Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68b2d639 authored by Vadim Tryshev's avatar Vadim Tryshev Committed by Android (Google) Code Review
Browse files

Merge "Setting mBackdropBack to null if artwork isn't available." into nyc-dev

parents 6bfe42f9 e7d7d572
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1946,6 +1946,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,

                    // We are unlocking directly - no animation!
                    mBackdrop.setVisibility(View.GONE);
                    mBackdropBack.setImageDrawable(null);
                } else {
                    mBackdrop.animate()
                            // Never let the alpha become zero - otherwise the RenderNode
@@ -1961,7 +1962,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
                                public void run() {
                                    mBackdrop.setVisibility(View.GONE);
                                    mBackdropFront.animate().cancel();
                                    mBackdropBack.animate().cancel();
                                    mBackdropBack.setImageDrawable(null);
                                    mHandler.post(mHideBackdropFront);
                                }
                            });