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

Commit 49818ace 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 nyc-dev am: a423e253

am: fa442e59

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

Change-Id: I2550a03123183869ab73bc1e473a1857f7a3ee0a
parents d85f2ca7 fa442e59
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));
                }
            }
        }
    }