We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90a80bb + f249efc commit e663925Copy full SHA for e663925
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -1084,8 +1084,9 @@ protected void setAreThereNotifications() {
1084
1085
if (mHasFlipSettings
1086
&& mFlipSettingsView != null
1087
- && mFlipSettingsView.getVisibility() == View.VISIBLE) {
1088
- // the flip settings panel is showing; we should not be shown
+ && mFlipSettingsView.getVisibility() == View.VISIBLE
+ && mScrollView.getVisibility() != View.VISIBLE) {
1089
+ // the flip settings panel is unequivocally showing; we should not be shown
1090
mClearButton.setVisibility(View.INVISIBLE);
1091
} else if (mClearButton.isShown()) {
1092
if (clearable != (mClearButton.getAlpha() == 1.0f)) {
0 commit comments