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

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

Merge "Fix TileLayout#onMeasure" into qt-dev

am: 23feab43

Change-Id: Id64ca5213ea57f12a811680c9b827eaba9dd07d6
parents 67225c0f 23feab43
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);
    }

    /**