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

Commit 3b968452 authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi Committed by android-build-merger
Browse files

Merge "Fix: Cannot control ime_switcher and menu after resetting." into...

Merge "Fix: Cannot control ime_switcher and menu after resetting." into nyc-dev am: a423e253 am: fa442e59
am: 49818ace

* commit '49818ace':
  Fix: Cannot control ime_switcher and menu after resetting.

Change-Id: I6007159818f0eca1540ce7afe8efce1ca4f182cd
parents 54616bd0 49818ace
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -282,6 +282,12 @@ public class NavigationBarInflaterView extends FrameLayout implements TunerServi
            final int indexOfKey = mButtonDispatchers.indexOfKey(v.getId());
            if (indexOfKey >= 0) {
                mButtonDispatchers.valueAt(indexOfKey).addView(v);
            } else if (v instanceof ViewGroup) {
                final ViewGroup viewGroup = (ViewGroup)v;
                final int N = viewGroup.getChildCount();
                for (int i = 0; i < N; i++) {
                    addToDispatchers(viewGroup.getChildAt(i));
                }
            }
        }
    }