Skip to content

Commit ea1a37b

Browse files
committed
GestureConverter: dump value of 3-finger tap setting
Test: adb shell dumpsys input Flag: com.android.hardware.input.touchpad_three_finger_tap_shortcut Bug: 365063048 Change-Id: Ibfb6813dd5cca859c7fafb78cb2508daf7f8029f
1 parent 2a0210e commit ea1a37b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

services/inputflinger/reader/mapper/gestures/GestureConverter.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ std::string GestureConverter::dump() const {
9999
out << "Current classification: " << ftl::enum_string(mCurrentClassification) << "\n";
100100
out << "Is hovering: " << mIsHovering << "\n";
101101
out << "Enable Tap Timestamp: " << mWhenToEnableTapToClick << "\n";
102+
out << "Three finger tap shortcut enabled: "
103+
<< (mThreeFingerTapShortcutEnabled ? "enabled" : "disabled") << "\n";
102104
return out.str();
103105
}
104106

0 commit comments

Comments
 (0)