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

Commit c391a988 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix bug 4521549 - Crash in ScrollingTabContainerView, when using a tab with null text"

parents c02fc922 251df778
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -236,8 +236,9 @@ public class ScrollingTabContainerView extends HorizontalScrollView {
                    }
                    mTextView.setText(text);
                    mTextView.setVisibility(VISIBLE);
                } else {
                } else if (mTextView != null) {
                    mTextView.setVisibility(GONE);
                    mTextView.setText(null);
                }
            }
        }