am cd4c754e: am 374013f4: Merge "Suppress haptic feedback for SLEEP key when already asleep." into klp-modular-dev
* commit 'cd4c754e9917f3ad292e20a89f1f7d03f344a3cf': Suppress haptic feedback for SLEEP key when already asleep.
This commit is contained in:
@@ -4118,11 +4118,6 @@ public class PhoneWindowManager implements WindowManagerPolicy {
|
||||
+ " policyFlags=" + Integer.toHexString(policyFlags));
|
||||
}
|
||||
|
||||
if (down && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
|
||||
&& event.getRepeatCount() == 0) {
|
||||
performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
|
||||
}
|
||||
|
||||
// Basic policy based on interactive state.
|
||||
int result;
|
||||
boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
|
||||
@@ -4145,6 +4140,10 @@ public class PhoneWindowManager implements WindowManagerPolicy {
|
||||
return result;
|
||||
}
|
||||
|
||||
boolean useHapticFeedback = down
|
||||
&& (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
|
||||
&& event.getRepeatCount() == 0;
|
||||
|
||||
// Handle special keys.
|
||||
switch (keyCode) {
|
||||
case KeyEvent.KEYCODE_VOLUME_DOWN:
|
||||
@@ -4291,6 +4290,9 @@ public class PhoneWindowManager implements WindowManagerPolicy {
|
||||
|
||||
case KeyEvent.KEYCODE_SLEEP: {
|
||||
result &= ~ACTION_PASS_TO_USER;
|
||||
if (!mPowerManager.isInteractive()) {
|
||||
useHapticFeedback = false; // suppress feedback if already non-interactive
|
||||
}
|
||||
mPowerManager.goToSleep(event.getEventTime());
|
||||
isWakeKey = false;
|
||||
break;
|
||||
@@ -4357,6 +4359,10 @@ public class PhoneWindowManager implements WindowManagerPolicy {
|
||||
}
|
||||
}
|
||||
|
||||
if (useHapticFeedback) {
|
||||
performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
|
||||
}
|
||||
|
||||
if (isWakeKey) {
|
||||
mPowerManager.wakeUp(event.getEventTime());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user