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

Commit 855d408e authored by Jason Monk's avatar Jason Monk
Browse files

Fix edit/page indicator area layout

Bug: 27201532
Change-Id: Ie03e6aeeb9d607f1fba370a4f1bd23a2ffb9b485
parent 9a08f827
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
    <FrameLayout
        android:id="@+id/page_decor"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_height="48dp"
        android:layout_gravity="bottom">

        <com.android.systemui.qs.PageIndicator
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ public class TileLayout extends ViewGroup implements QSTileLayout {
            record.tileView.measure(exactly(mCellWidth), exactly(mCellHeight));
            previousView = record.tileView.updateAccessibilityOrder(previousView);
        }
        setMeasuredDimension(width, (mCellHeight + mCellMargin) * rows + mCellMargin);
        setMeasuredDimension(width, (mCellHeight + mCellMargin) * rows);
    }

    private static int exactly(int size) {