Fix typo TOLERENCE --> TOLERANCE

Test: refactoring CL. Existing unit test still pass.

Change-Id: I8f6e48d3fe4342ae28739f59fd62950aeb79fc71
This commit is contained in:
Jason Chang
2023-01-30 19:11:02 +00:00
parent d403dae9b8
commit 4b30f5bab9

View File

@@ -179,7 +179,7 @@ public class NavigationBar extends ViewController<NavigationBarView> implements
private static final String EXTRA_TRANSIENT_STATE = "transient_state";
/** Allow some time inbetween the long press for back and recents. */
private static final int LOCK_TO_APP_GESTURE_TOLERENCE = 200;
private static final int LOCK_TO_APP_GESTURE_TOLERANCE = 200;
private static final long AUTODIM_TIMEOUT_MS = 2250;
private final Context mContext;
@@ -1327,7 +1327,7 @@ public class NavigationBar extends ViewController<NavigationBarView> implements
// If we recently long-pressed the other button then they were
// long-pressed 'together'
if ((time - mLastLockToAppLongPress) < LOCK_TO_APP_GESTURE_TOLERENCE) {
if ((time - mLastLockToAppLongPress) < LOCK_TO_APP_GESTURE_TOLERANCE) {
stopLockTaskMode = true;
return true;
} else if (v.getId() == btnId1) {