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

Commit f4c0f7d2 authored by Hyunyoung Song's avatar Hyunyoung Song
Browse files

[DO NOT MERGE] Fix widget tray clipping due to wrong padding

b/27380335
padding was set wrong when the widget view hierarchy was
being refactored in this CL: ag/870011

Change-Id: I003634acded2bbe204098c0e6fefff13d154b5d6
(cherry picked from commit 58e61ac2)
parent 36500198
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -312,7 +312,15 @@ public class WidgetsContainerView extends BaseContainerView
    //
    @Override
    protected void onUpdateBgPadding(Rect padding, Rect bgPadding) {
        mRecyclerView.updateBackgroundPadding(bgPadding);
        if (Utilities.isRtl(getResources())) {
            getContentView().setPadding(0, bgPadding.top,
                    bgPadding.right, bgPadding.bottom);
            mRecyclerView.updateBackgroundPadding(new Rect(bgPadding.left, 0, 0, 0));
        } else {
            getContentView().setPadding(bgPadding.left, bgPadding.top,
                    0, bgPadding.bottom);
            mRecyclerView.updateBackgroundPadding(new Rect(0, 0, bgPadding.right, 0));
        }
    }

    /**