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

Commit f92b74f8 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

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

Change-Id: Idde6b6409484c2488985fd2549fb85af6f9ed7ff
parents 454ca9fc a423e253
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));
                }
            }
        }
    }