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

Commit aedbf86a authored by Siarhei Vishniakou's avatar Siarhei Vishniakou Committed by android-build-merger
Browse files

Merge "Add mInputFilterEnabled to dump" into qt-dev

am: 7c28c970

Change-Id: I2ca420827d87b5a374527b098c6366f8c49678a0
parents 55162b57 7c28c970
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3611,8 +3611,9 @@ void InputDispatcher::logDispatchStateLocked() {
}

void InputDispatcher::dumpDispatchStateLocked(std::string& dump) {
    dump += StringPrintf(INDENT "DispatchEnabled: %d\n", mDispatchEnabled);
    dump += StringPrintf(INDENT "DispatchFrozen: %d\n", mDispatchFrozen);
    dump += StringPrintf(INDENT "DispatchEnabled: %s\n", toString(mDispatchEnabled));
    dump += StringPrintf(INDENT "DispatchFrozen: %s\n", toString(mDispatchFrozen));
    dump += StringPrintf(INDENT "InputFilterEnabled: %s\n", toString(mInputFilterEnabled));
    dump += StringPrintf(INDENT "FocusedDisplayId: %" PRId32 "\n", mFocusedDisplayId);

    if (!mFocusedApplicationHandlesByDisplay.empty()) {