diff options
| author | 2023-04-17 17:41:47 +0000 | |
|---|---|---|
| committer | 2023-04-17 17:41:47 +0000 | |
| commit | 53739801d0b9a24cc8dca083ccbc44b5f70412a4 (patch) | |
| tree | 234edcee6b589fc0c0f4fa50dfa45e49a3562e44 | |
| parent | 728b80a3256c04b690ab81b1fe6fce4f22191aa1 (diff) | |
| parent | 5ac77d7f24c9d5d699f18e640d0e679eec649b65 (diff) | |
Merge "Made bp have higher window priority" into udc-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 f435b227542f..aeebb010eb1e 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java +++ b/packages/SystemUI/src/com/android/systemui/biometrics/AuthContainerView.java @@ -880,7 +880,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; |