diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-08-18 17:48:53 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-08-18 17:48:53 -0700 |
commit | 3d8c9bdbed0c31143227697bd0d94fd234fe08ad (patch) | |
tree | 1c81b1435f758f6dbbbca210a4a14b1995714d36 /services/java | |
parent | 99401b29c3f39488a058d3eb616009b751879a77 (diff) | |
download | frameworks_base-3d8c9bdbed0c31143227697bd0d94fd234fe08ad.zip frameworks_base-3d8c9bdbed0c31143227697bd0d94fd234fe08ad.tar.gz frameworks_base-3d8c9bdbed0c31143227697bd0d94fd234fe08ad.tar.bz2 |
Raise motion event throttle to 60Hz from 35Hz.
Bug: 2931575
Change-Id: Ib8b1793addcda74b2fa6de2ce61b6133b8ffda9d
Diffstat (limited to 'services/java')
-rw-r--r-- | services/java/com/android/server/InputManager.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/services/java/com/android/server/InputManager.java b/services/java/com/android/server/InputManager.java index e54f183..f330d40 100644 --- a/services/java/com/android/server/InputManager.java +++ b/services/java/com/android/server/InputManager.java @@ -48,9 +48,6 @@ import java.util.ArrayList; /* * Wraps the C++ InputManager and provides its callbacks. - * - * XXX Tempted to promote this to a first-class service, ie. InputManagerService, to - * improve separation of concerns with respect to the window manager. */ public class InputManager { static final String TAG = "InputManager"; @@ -517,7 +514,7 @@ public class InputManager { } catch (NumberFormatException e) { } if (result < 1) { - result = 35; + result = 60; } return result; } |