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

Commit 0449335c authored by Ajay Nadathur's avatar Ajay Nadathur
Browse files

Fix fingerprint enrollment bug that fails during last leg

- Upon configuration changes during the last leg of enrollment,
  a check is required to see if maximum progress has been reached.
  If so, the next intent has to be launched.

bug: 36656476
Test: Manually tested and verified.
Change-Id: Ie4ec75cb775f83536ad0127011aabcc87c6c5ae0
parent bd429f42
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -341,6 +341,9 @@ public class FingerprintEnrollEnrolling extends FingerprintEnrollBase
            animateProgress(progress);
        } else {
            mProgressBar.setProgress(progress);
            if (progress >= PROGRESS_BAR_MAX) {
                mDelayedFinishRunnable.run();
            }
        }
    }