27 lines
1.5 KiB
Diff
27 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Danny Lin <danny@kdrag0n.dev>
|
|
Date: Tue, 15 Dec 2020 16:58:40 -0800
|
|
Subject: [PATCH] SystemUI: Skip screen-on animation in all scenarios
|
|
|
|
Unlike turning the screen off, turning it on is a time-critical
|
|
operation that should be done as fast as possible without a slow
|
|
animation. It's not only noticeable when using capacitive fingerprint
|
|
sensors.
|
|
---
|
|
.../android/systemui/statusbar/phone/CentralSurfacesImpl.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java
|
|
index 269944d78c5f..e95270b6e880 100644
|
|
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java
|
|
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java
|
|
@@ -4042,7 +4042,7 @@ public class CentralSurfacesImpl extends CoreStartable implements
|
|
|
|
boolean launchingAffordanceWithPreview =
|
|
mNotificationPanelViewController.isLaunchingAffordanceWithPreview();
|
|
- mScrimController.setLaunchingAffordanceWithPreview(launchingAffordanceWithPreview);
|
|
+ mScrimController.setLaunchingAffordanceWithPreview(true);
|
|
|
|
if (mStatusBarKeyguardViewManager.isShowingAlternateAuth()) {
|
|
if (mState == StatusBarState.SHADE || mState == StatusBarState.SHADE_LOCKED
|