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

Commit 89417177 authored by Alan Viverette's avatar Alan Viverette
Browse files

Fix typo in LayerDrawable

Change-Id: I6c73cb90d0c161d29e8d41c54850d66840c947d7
parent ad7d65da
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;
            }