We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5894e7 + ea1a37b commit 2a8a1aeCopy full SHA for 2a8a1ae
1 file changed
services/inputflinger/reader/mapper/gestures/GestureConverter.cpp
@@ -99,6 +99,8 @@ std::string GestureConverter::dump() const {
99
out << "Current classification: " << ftl::enum_string(mCurrentClassification) << "\n";
100
out << "Is hovering: " << mIsHovering << "\n";
101
out << "Enable Tap Timestamp: " << mWhenToEnableTapToClick << "\n";
102
+ out << "Three finger tap shortcut enabled: "
103
+ << (mThreeFingerTapShortcutEnabled ? "enabled" : "disabled") << "\n";
104
return out.str();
105
}
106
0 commit comments