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

Verified Commit aa28be3e authored by Yash Garg's avatar Yash Garg 💬
Browse files

fix: decrease bottom padding for icons in hotseat

parent c56b1de3
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ public class Hotseat extends CellLayout implements Insettable, OffsetParent {
        }

        Rect padding = grid.getHotseatLayoutPadding(getContext());
        setPadding(padding.left, padding.top * 2, padding.right, padding.bottom);
        setPadding(padding.left, padding.top, padding.right, padding.bottom / 3);
        setLayoutParams(lp);
        InsettableFrameLayout.dispatchInsets(this, insets);
    }