summaryrefslogtreecommitdiffstats
path: root/services/inputflinger/InputReader.cpp
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2015-04-21 21:23:44 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-21 21:23:44 +0000
commit671024b4cd58d6843a34649365851401eb65bb7a (patch)
treeb5f96ae796beb1dad58984d7dc3fd4bdb925e821 /services/inputflinger/InputReader.cpp
parent2fba96360e3e02bf2ddae279c2097fb12ca850e9 (diff)
parent8b0673ce0ca97952d3ed9cb8912b31f367e41c0c (diff)
downloadframeworks_native-671024b4cd58d6843a34649365851401eb65bb7a.zip
frameworks_native-671024b4cd58d6843a34649365851401eb65bb7a.tar.gz
frameworks_native-671024b4cd58d6843a34649365851401eb65bb7a.tar.bz2
Merge "Increase stylus data timeout."
Diffstat (limited to 'services/inputflinger/InputReader.cpp')
-rw-r--r--services/inputflinger/InputReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/inputflinger/InputReader.cpp b/services/inputflinger/InputReader.cpp
index 0e60d4d..3e9f765 100644
--- a/services/inputflinger/InputReader.cpp
+++ b/services/inputflinger/InputReader.cpp
@@ -71,7 +71,7 @@ static const size_t MAX_SLOTS = 32;
// Maximum amount of latency to add to touch events while waiting for data from an
// external stylus.
-static const nsecs_t EXTERNAL_STYLUS_DATA_TIMEOUT = ms2ns(32);
+static const constexpr nsecs_t EXTERNAL_STYLUS_DATA_TIMEOUT = ms2ns(72);
// --- Static Functions ---