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

Commit db54ea0f authored by Marco Nelissen's avatar Marco Nelissen
Browse files

Fix Tabwidget copy/paste bug.

Change-Id: I8e75ec65353748ec794862cfb0e76653ba4fc428
parent 189f65c1
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();
    }