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

Commit 15316675 authored by Fabian Kozynski's avatar Fabian Kozynski Committed by android-build-merger
Browse files

Merge "Fix TileLayout#onMeasure" into qt-dev am: 23feab43

am: efccc88e

Change-Id: I002136365e8d8050d1afc317b55233f982c3c89a
parents fe257b8f efccc88e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ public class TileLayout extends ViewGroup implements QSTileLayout {
                (mRows != 0 ? (mCellMarginTop - mCellMarginVertical) : 0);
        if (height < 0) height = 0;

        setMeasuredDimension(width + getPaddingStart() + getPaddingEnd(), height);
        setMeasuredDimension(width, height);
    }

    /**