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

Commit 339df074 authored by Jason Monk's avatar Jason Monk
Browse files

Guard against crash in RTL.

Change-Id: Id692360cc66600a06a4353a8029440be422cc79f
Fixes: 27927374
parent 726959bf
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -118,6 +118,10 @@ public class PageIndicator extends ViewGroup {
        }
        ImageView first = (ImageView) getChildAt(firstIndex);
        ImageView second = (ImageView) getChildAt(secondIndex);
        if (second == null) {
            // Weird state where number of pages must not have propagated yet.
            return;
        }
        // Lay the two views on top of each other.
        second.setTranslationX(first.getX() - second.getX());