Merge "Cancel show runnable when bouncer is hidden" into qt-r1-dev am: 859adc665b am: e71916fc8b

am: d31bb718e0

Change-Id: Ic50ad039b36c56814e675936e49bb904a790ed9c
This commit is contained in:
Lucas Dupin
2019-07-25 12:01:00 -07:00
committed by android-build-merger

View File

@@ -207,14 +207,12 @@ public class KeyguardBouncer {
* @see #onFullyShown()
*/
private void onFullyHidden() {
if (!mShowingSoon) {
cancelShowRunnable();
if (mRoot != null) {
mRoot.setVisibility(View.INVISIBLE);
}
mFalsingManager.onBouncerHidden();
DejankUtils.postAfterTraversal(mResetRunnable);
cancelShowRunnable();
if (mRoot != null) {
mRoot.setVisibility(View.INVISIBLE);
}
mFalsingManager.onBouncerHidden();
DejankUtils.postAfterTraversal(mResetRunnable);
}
private final Runnable mShowRunnable = new Runnable() {