diff options
| author | 2016-06-24 17:33:01 -0700 | |
|---|---|---|
| committer | 2016-06-24 17:33:03 -0700 | |
| commit | 8ba1cb3a7a136cb82dc22c15ebd7f1a8d8244c24 (patch) | |
| tree | 6bc9cc61e6d1de1ac6eb663eeaad0e3761f25263 | |
| parent | 1156c52b039e9a042c331125f9c5c572b5b98ee1 (diff) | |
Reduce vibration length of camera gesture
Fixes: 29621269
Change-Id: Iaca4f82e75a709ccf1345c271ae443f16ebce852
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index 12a79b8650dc..4de769db61c6 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -4640,7 +4640,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, private void vibrateForCameraGesture() { // Make sure to pass -1 for repeat so VibratorService doesn't stop us when going to sleep. - mVibrator.vibrate(new long[]{0, 750L}, -1 /* repeat */); + mVibrator.vibrate(new long[]{0, 400}, -1 /* repeat */); } public void onScreenTurnedOn() { |