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

Commit 4d3ddb06 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Add a missing "=" in dumpsys input_method

My previous CL [1] lacked "=" when dumping

  NavigationBarController#mShouldShowImeSwitcherWhenImeIsShown

into dumpsys.  This CL fixes that typo.

 [1]: I5de9ac0dc8670842edf66306bb4c281c77cea376
      75b935a1

Bug: 215551357
Test: adb shell dumpsys input_method | grep NavigationBarController
Change-Id: Ifa2f5d2abcbe982b0afa5a6dad1573a86123485e
parent d54ccef7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -546,7 +546,8 @@ final class NavigationBarController {
        public String toDebugString() {
            return "{mRenderGesturalNavButtons=" + mRenderGesturalNavButtons
                    + " mNavigationBarFrame=" + mNavigationBarFrame
                    + " mShouldShowImeSwitcherWhenImeIsShown" + mShouldShowImeSwitcherWhenImeIsShown
                    + " mShouldShowImeSwitcherWhenImeIsShown="
                    + mShouldShowImeSwitcherWhenImeIsShown
                    + " mAppearance=0x" + Integer.toHexString(mAppearance)
                    + " mDarkIntensity=" + mDarkIntensity
                    + " mDrawLegacyNavigationBarBackground=" + mDrawLegacyNavigationBarBackground