diff options
| author | 2016-06-25 02:15:26 +0000 | |
|---|---|---|
| committer | 2016-06-25 02:15:26 +0000 | |
| commit | 8246f1aa3f768756e3533a38556bf9ab31cd44d6 (patch) | |
| tree | cda5d468b15472deb6208217852f00a1459da1e5 | |
| parent | 2b39c14c81d83e606cf73ca559719dee4c315337 (diff) | |
| parent | 843d16715bd0eb96283a338fe081500a25b92181 (diff) | |
Merge \\"Reduce vibration length of camera gesture\\" into nyc-mr1-dev am: d37db3c77f
am: 843d16715b
Change-Id: Ie40fe8ce2469bdf24a77f6106cd9e94c87887b14
| -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 64752f41a74f..fde7cc43f4a0 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -4657,7 +4657,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() { |