diff options
| author | Yohei Yukawa <yukawa@google.com> | 2022-02-03 11:59:37 -0800 |
|---|---|---|
| committer | Yohei Yukawa <yukawa@google.com> | 2022-02-03 11:59:37 -0800 |
| commit | 4d3ddb067ce88c65b570c55cf46c8c8203cc76d8 (patch) | |
| tree | 0637612011e5e8e8fc286451398138c0f2e5f9b4 /core/java/android/inputmethodservice/NavigationBarController.java | |
| parent | d54ccef7cb111e700c7a09903ca75bc056f3ab37 (diff) | |
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
75b935a12b37ffa97447b9acd80f94a4172bf3e6
Bug: 215551357
Test: adb shell dumpsys input_method | grep NavigationBarController
Change-Id: Ifa2f5d2abcbe982b0afa5a6dad1573a86123485e
Diffstat (limited to 'core/java/android/inputmethodservice/NavigationBarController.java')
| -rw-r--r-- | core/java/android/inputmethodservice/NavigationBarController.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/inputmethodservice/NavigationBarController.java b/core/java/android/inputmethodservice/NavigationBarController.java index e5c22e4de08e..83fc7276eabc 100644 --- a/core/java/android/inputmethodservice/NavigationBarController.java +++ b/core/java/android/inputmethodservice/NavigationBarController.java @@ -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 |
