[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);
                 }