From ebd418a4f1a69c502ae4e7adef35478fe449fe80 Mon Sep 17 00:00:00 2001 From: Harry Cutts Date: Fri, 16 Aug 2024 15:52:24 +0000 Subject: PointerChoreographer: add missing indents in dump Bug: 245989146 Test: check output of adb shell dumpsys input Flag: EXEMPT bugfix Change-Id: Ie635158476e94fe55debf8fca2e0c9cf6fd865bc --- services/inputflinger/PointerChoreographer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/inputflinger/PointerChoreographer.cpp b/services/inputflinger/PointerChoreographer.cpp index 625599a775..397fedac4c 100644 --- a/services/inputflinger/PointerChoreographer.cpp +++ b/services/inputflinger/PointerChoreographer.cpp @@ -511,8 +511,9 @@ void PointerChoreographer::dump(std::string& dump) { std::scoped_lock _l(mLock); dump += "PointerChoreographer:\n"; - dump += StringPrintf("show touches: %s\n", mShowTouchesEnabled ? "true" : "false"); - dump += StringPrintf("stylus pointer icon enabled: %s\n", + dump += StringPrintf(INDENT "Show Touches Enabled: %s\n", + mShowTouchesEnabled ? "true" : "false"); + dump += StringPrintf(INDENT "Stylus PointerIcon Enabled: %s\n", mStylusPointerIconEnabled ? "true" : "false"); dump += INDENT "MousePointerControllers:\n"; -- cgit v1.2.3-59-g8ed1b