Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea1a37b3 authored by Harry Cutts's avatar Harry Cutts
Browse files

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
parent 2a0210e8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -99,6 +99,8 @@ std::string GestureConverter::dump() const {
    out << "Current classification: " << ftl::enum_string(mCurrentClassification) << "\n";
    out << "Is hovering: " << mIsHovering << "\n";
    out << "Enable Tap Timestamp: " << mWhenToEnableTapToClick << "\n";
    out << "Three finger tap shortcut enabled: "
        << (mThreeFingerTapShortcutEnabled ? "enabled" : "disabled") << "\n";
    return out.str();
}