diff options
| author | 2021-09-24 01:06:18 +0000 | |
|---|---|---|
| committer | 2021-09-24 01:06:18 +0000 | |
| commit | 68acddb4dd184ff3136fce943b44b76ae035c242 (patch) | |
| tree | d38342e9f6e515cdfab6900338e819417ab1cb76 /services/inputflinger/InputReaderBase.cpp | |
| parent | 950b7df53c47944ea656cab5baf357ee421f8dcc (diff) | |
| parent | f192a1085a4ea16458a8cc569e945bf090375733 (diff) | |
Snap for 7761456 from f192a1085a4ea16458a8cc569e945bf090375733 to sc-qpr1-release
Change-Id: I0959ad258365958fbda2e9ec409d434598033a72
Diffstat (limited to 'services/inputflinger/InputReaderBase.cpp')
| -rw-r--r-- | services/inputflinger/InputReaderBase.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/services/inputflinger/InputReaderBase.cpp b/services/inputflinger/InputReaderBase.cpp index 9cc777d450..d34482f506 100644 --- a/services/inputflinger/InputReaderBase.cpp +++ b/services/inputflinger/InputReaderBase.cpp @@ -67,6 +67,9 @@ std::string InputReaderConfiguration::changesToString(uint32_t changes) {      if (changes & CHANGE_EXTERNAL_STYLUS_PRESENCE) {          result += "EXTERNAL_STYLUS_PRESENCE | ";      } +    if (changes & CHANGE_POINTER_CAPTURE) { +        result += "POINTER_CAPTURE | "; +    }      if (changes & CHANGE_ENABLED_STATE) {          result += "ENABLED_STATE | ";      }  |