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

Commit e100cd99 authored by Alan Viverette's avatar Alan Viverette Committed by Android (Google) Code Review
Browse files

Merge "Fix typo in LayerDrawable"

parents 5f60e1e4 89417177
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ public class LayerDrawable extends Drawable implements Drawable.Callback {
    public Drawable findDrawableByLayerId(int id) {
        final ChildDrawable[] layers = mLayerState.mChildren;
        final int N = mLayerState.mNum;
        for (int i = 0; i < N; i--) {
        for (int i = 0; i < N; i++) {
            if (layers[i].mId == id) {
                return layers[i].mDrawable;
            }