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

Commit 7c5756bc authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Preserve top/bottom padding in PredictionRowView on updating insets."...

Merge "Preserve top/bottom padding in PredictionRowView on updating insets." into ub-launcher3-master
parents a74e60cb 9f62d13e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -674,8 +674,9 @@ public class AllAppsContainerView extends RelativeLayout implements DragSource,
                recyclerView.setPadding(padding.left, paddingTop, padding.right, padding.bottom);
            }
            if (isHeaderVisible()) {
                mHeader.getPredictionRow()
                        .setPadding(padding.left, 0 , padding.right, 0);
                PredictionRowView prv = mHeader.getPredictionRow();
                prv.setPadding(padding.left, prv.getPaddingTop() , padding.right,
                        prv.getPaddingBottom());
            }
        }