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

Commit 47b464a9 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android (Google) Code Review
Browse files

Merge "Fix Tabwidget copy/paste bug."

parents 437e59a2 db54ea0f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ public class TabWidget extends LinearLayout implements OnFocusChangeListener {
     * @param drawable the right strip drawable
     */
    public void setRightStripDrawable(Drawable drawable) {
        mBottomLeftStrip = drawable;
        mBottomRightStrip = drawable;
        requestLayout();
        invalidate();    }

@@ -232,7 +232,7 @@ public class TabWidget extends LinearLayout implements OnFocusChangeListener {
     * right strip drawable
     */
    public void setRightStripDrawable(int resId) {
        mBottomLeftStrip = mContext.getResources().getDrawable(resId);
        mBottomRightStrip = mContext.getResources().getDrawable(resId);
        requestLayout();
        invalidate();
    }