summaryrefslogtreecommitdiff
path: root/services/inputflinger/InputReaderBase.cpp
diff options
context:
space:
mode:
author Harry Cutts <hcutts@google.com> 2023-01-28 09:28:30 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-01-28 09:28:30 +0000
commit3a27e580badc65d403ea0e49b6ba6862cd5e18c6 (patch)
tree6c110ebfeeed7eeb0ffc328e14c11d5a2a19137b /services/inputflinger/InputReaderBase.cpp
parentf7077ab6124bc2df4e8453feb146054501bada0e (diff)
parenta546ba8dfb64ef493c06dae1402fb02b024f8262 (diff)
Merge "Add plumbing from settings to gesture properties"
Diffstat (limited to 'services/inputflinger/InputReaderBase.cpp')
-rw-r--r--services/inputflinger/InputReaderBase.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/services/inputflinger/InputReaderBase.cpp b/services/inputflinger/InputReaderBase.cpp
index a864cf8202..2450235ec1 100644
--- a/services/inputflinger/InputReaderBase.cpp
+++ b/services/inputflinger/InputReaderBase.cpp
@@ -73,6 +73,9 @@ std::string InputReaderConfiguration::changesToString(uint32_t changes) {
if (changes & CHANGE_ENABLED_STATE) {
result += "ENABLED_STATE | ";
}
+ if (changes & CHANGE_TOUCHPAD_SETTINGS) {
+ result += "TOUCHPAD_SETTINGS | ";
+ }
if (changes & CHANGE_MUST_REOPEN) {
result += "MUST_REOPEN | ";
}