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

Commit 4cbbaedb authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Preventing padding from getting reset when the widget updates

Bug: 112854572
Change-Id: Ia2963310997ca13f2e1f18f7268b0b9b54a53590
parent f2b97f8c
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -162,7 +162,6 @@ public class QsbContainerView extends FrameLayout {
                        .getAppWidgetOptions(widgetId), opts)) {
                        .getAppWidgetOptions(widgetId), opts)) {
                    mQsb.updateAppWidgetOptions(opts);
                    mQsb.updateAppWidgetOptions(opts);
                }
                }
                mQsb.setPadding(0, 0, 0, 0);
                mQsbWidgetHost.startListening();
                mQsbWidgetHost.startListening();
                return mQsb;
                return mQsb;
            }
            }
+5 −0
Original line number Original line Diff line number Diff line
@@ -52,6 +52,11 @@ public class QsbWidgetHostView extends AppWidgetHostView {
        return mPreviousOrientation != orientation;
        return mPreviousOrientation != orientation;
    }
    }


    @Override
    public void setPadding(int left, int top, int right, int bottom) {
        // Prevent the base class from applying the default widget padding.
        super.setPadding(0, 0, 0, 0);
    }


    @Override
    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {