diff options
| author | 2024-09-24 18:42:24 +0000 | |
|---|---|---|
| committer | 2024-09-24 18:42:24 +0000 | |
| commit | 489039c3aabda3f5a6538541cfa216c11ea4e4bb (patch) | |
| tree | 4599f8b9db883416da0d1e65fe34c0826ec2aa4d | |
| parent | 34d218139744cf559873a2ddefa8e873fccdd76f (diff) | |
| parent | cfd6545b6ca44dbb3def6de27737cb5fb4d87892 (diff) | |
Merge "Revert "[flexiglass] Fixes QS header never being set invisible when unlocked."" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/shade/QuickSettingsControllerImpl.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/shade/QuickSettingsControllerImpl.java b/packages/SystemUI/src/com/android/systemui/shade/QuickSettingsControllerImpl.java index 4ed4af647fdf..830649be2a98 100644 --- a/packages/SystemUI/src/com/android/systemui/shade/QuickSettingsControllerImpl.java +++ b/packages/SystemUI/src/com/android/systemui/shade/QuickSettingsControllerImpl.java @@ -42,7 +42,6 @@ import android.util.Log; import android.util.MathUtils; import android.view.MotionEvent; import android.view.VelocityTracker; -import android.view.View; import android.view.ViewConfiguration; import android.view.ViewGroup; import android.view.WindowInsets; @@ -464,9 +463,6 @@ public class QuickSettingsControllerImpl implements QuickSettingsController, Dum mJavaAdapter.alwaysCollectFlow( mCommunalTransitionViewModelLazy.get().isUmoOnCommunal(), this::setShouldUpdateSquishinessOnMedia); - mJavaAdapter.alwaysCollectFlow( - mShadeInteractor.isAnyExpanded(), - this::onAnyExpandedChanged); } private void initNotificationStackScrollLayoutController() { @@ -486,10 +482,6 @@ public class QuickSettingsControllerImpl implements QuickSettingsController, Dum } } - private void onAnyExpandedChanged(boolean isAnyExpanded) { - mQsFrame.setVisibility(isAnyExpanded ? View.VISIBLE : View.INVISIBLE); - } - private void onNotificationScrolled(int newScrollPosition) { updateExpansionEnabledAmbient(); } |