Skip to content

Commit c3cd250

Browse files
author
Brian Colonna
committed
Fix: FUL coming up when phone is powered off from lockscreen
When FUL was enabled and the power was turned off from the lockscreen, either manually or by timing out, the lockscreen would turn back on and FUL would start. I believe this is due to a recently-added 'force' flag, which this commit removes. Change-Id: I314125fe52afe1536ab5a4600f39f563e1d58991
1 parent 50a9267 commit c3cd250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ private void updateScreen(Mode mode, boolean force) {
818818
if (force || mUnlockScreen == null || unlockMode != mUnlockScreenMode) {
819819
boolean restartFaceLock = mFaceUnlock.stopIfRunning();
820820
recreateUnlockScreen(unlockMode);
821-
if (restartFaceLock || force) {
821+
if (restartFaceLock) {
822822
mFaceUnlock.activateIfAble(mHasOverlay);
823823
}
824824
}

0 commit comments

Comments
 (0)