diff options
| author | 2021-09-20 11:39:33 +0000 | |
|---|---|---|
| committer | 2021-09-20 11:39:33 +0000 | |
| commit | 2044a05ad6e2993f31811b42a437ec741075c7cd (patch) | |
| tree | c72ed1b454fa496531b340d1f4988a715679e637 | |
| parent | f061f27f16cf194a57f6e98dd347bdac90344077 (diff) | |
| parent | 2497f8aa28ab41180d8bd1995fb0962d01cdc5fd (diff) | |
Merge "Fix bug preventing pattern bouncer entering half height mode." into sc-v2-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java index a35aedf6f503..1862fc7f6603 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java @@ -102,7 +102,7 @@ public class KeyguardPatternView extends KeyguardInputView ConstraintSet cs = new ConstraintSet(); cs.clone(mContainer); - cs.setGuidelinePercent(R.id.pin_pad_top_guideline, posture == DEVICE_POSTURE_HALF_OPENED + cs.setGuidelinePercent(R.id.pattern_top_guideline, posture == DEVICE_POSTURE_HALF_OPENED ? halfOpenPercentage : 0.0f); cs.applyTo(mContainer); } |