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

Commit 30a84e50 authored by Joanne Chung's avatar Joanne Chung Committed by Automerger Merge Worker
Browse files

Merge "Fix translation doesn't work on ViewGroup" into sc-qpr1-dev am: f0c99d83 am: dedd68e5

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15853328

Change-Id: I0005a220026616ad60685057165d4e4a00157a70
parents 9b372aa2 dedd68e5
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -593,9 +593,8 @@ public class UiTranslationController {
            final View rootView = roots.get(rootNum).getView();
            if (rootView instanceof ViewGroup) {
                findViewsTraversalByAutofillIds((ViewGroup) rootView, sourceViewIds);
            } else {
                addViewIfNeeded(sourceViewIds, rootView);
            }
            addViewIfNeeded(sourceViewIds, rootView);
        }
    }

@@ -606,9 +605,8 @@ public class UiTranslationController {
            final View child = viewGroup.getChildAt(i);
            if (child instanceof ViewGroup) {
                findViewsTraversalByAutofillIds((ViewGroup) child, sourceViewIds);
            } else {
                addViewIfNeeded(sourceViewIds, child);
            }
            addViewIfNeeded(sourceViewIds, child);
        }
    }