diff options
| author | 2023-01-27 19:35:14 +0000 | |
|---|---|---|
| committer | 2023-01-27 19:35:14 +0000 | |
| commit | 89c8a28400fa90647c68bcc4ab1a256e89feacf2 (patch) | |
| tree | 5efa80e2f342bafe6fc27477501582d433c7272c | |
| parent | 690c929811f8b6f524e047594eaf5baea7f435a9 (diff) | |
| parent | ac90c91962707352d62da5d0e4d7069e7eea7ebd (diff) | |
Merge "Made bp have higher window priority" into tm-qpr-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java b/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java index 68e1f72d042a..febf75e90a14 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java +++ b/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java @@ -847,7 +847,7 @@ public class AuthContainerView extends LinearLayout final WindowManager.LayoutParams lp = new WindowManager.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT, - WindowManager.LayoutParams.TYPE_STATUS_BAR_ADDITIONAL, + WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG, windowFlags, PixelFormat.TRANSLUCENT); lp.privateFlags |= WindowManager.LayoutParams.SYSTEM_FLAG_SHOW_FOR_ALL_USERS; |