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

Commit 20e84c75 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a rebase gone wrong with pageindicator

The return statement was lost.

Change-Id: Ica403337bf9dce2c0b1c2447a0aa4359f991ac0d
Fixes: 27927374
parent 0529197e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -122,6 +122,7 @@ public class PageIndicator extends ViewGroup {
        ImageView second = (ImageView) getChildAt(secondIndex);
        if (first == null || second == null) {
            // may happen during reInflation or other weird cases
            return;
        }
        // Lay the two views on top of each other.
        second.setTranslationX(first.getX() - second.getX());