| commit | 667c077f99e998404f77720f3ea3d7f321ccffe8 | [log] [tgz] |
|---|---|---|
| author | András Kurucz <kurucz@google.com> | Wed Jun 25 19:42:37 2025 +0000 |
| committer | András Kurucz <kurucz@google.com> | Wed Jun 25 19:53:27 2025 +0000 |
| tree | 9080bba063392c9e218318dc3a18ed48cdcf2e28 | |
| parent | 6a1aa798dde17bffc737a572f450e8d541a3597d [diff] |
[Flexiglass] Turn off closing the guts from NSWV touches Closing the guts on outside touches are wired from the Flexiglass compose hierarchy now, see NSSL#closeControlsDueToOutsideTouch(). Fixes: 427657532 Test: atest NotificationShadeWindowViewControllerTest Flag: com.android.systemui.scene_container Change-Id: Ie7a8a953e466bd4dac84da14fe76de95beb7bb25
diff --git a/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java b/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java index 78ac57e..ca35fdf 100644 --- a/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java +++ b/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java
@@ -467,7 +467,7 @@ return logDownOrFalseResultDispatch(ev, "disallowed new pointer", false); } } - if (isDown) { + if (!SceneContainerFlag.isEnabled() && isDown) { mNotificationStackScrollLayoutController.closeControlsIfOutsideTouch(ev); }