diff options
author | 2019-10-27 04:44:29 +0000 | |
---|---|---|
committer | 2019-10-27 04:44:29 +0000 | |
commit | 1aed8b369dd977fba69134fc03bf3762c26c560c (patch) | |
tree | 5840f75cb9669f1da1c4aae8ab1cf2dedd016fb8 /services/inputflinger/InputClassifier.cpp | |
parent | 19c8513c7b7d75ddd78d1b4c6948e4dadc1e50f7 (diff) | |
parent | 0205f87a0121f1e6057055752365a01b390c60ec (diff) |
Merge "Merge Coral/Flame into AOSP master"
Diffstat (limited to 'services/inputflinger/InputClassifier.cpp')
-rw-r--r-- | services/inputflinger/InputClassifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/inputflinger/InputClassifier.cpp b/services/inputflinger/InputClassifier.cpp index ef1a2247e9..6a7f2797f4 100644 --- a/services/inputflinger/InputClassifier.cpp +++ b/services/inputflinger/InputClassifier.cpp @@ -82,7 +82,7 @@ static bool isTouchEvent(const NotifyMotionArgs& args) { // Check if the "deep touch" feature is on. static bool deepPressEnabled() { std::string flag_value = server_configurable_flags::GetServerConfigurableFlag( - INPUT_NATIVE_BOOT, DEEP_PRESS_ENABLED, "true"); + INPUT_NATIVE_BOOT, DEEP_PRESS_ENABLED, "false"); std::transform(flag_value.begin(), flag_value.end(), flag_value.begin(), ::tolower); if (flag_value == "1" || flag_value == "true") { ALOGI("Deep press feature enabled."); |