summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jordan Demeulenaere <jdemeulenaere@google.com> 2024-10-07 13:44:37 +0200
committer Jordan Demeulenaere <jdemeulenaere@google.com> 2024-10-07 13:55:02 +0200
commitd53f4c79bc3cf031494762a479ce7edcec0ba2dc (patch)
treeedbc30e312e8f391060f371e90aaee796aa1a013
parent19719a1609a9133ab953b8105cfc32e477018771 (diff)
Enable interruptions in Communal
This CL enables the enableInterruptions flag in the STLState used by Communal. This flag is already enabled by default in STLState and is going to be removed soon. This CL shouldn't have any effect on Communal given that Communal has only 2 scenes. Bug: 371951148 Test: Manual, swiped from lockscreen to communal, entered edit mode, went back to communal then swiped back to lockscreen. Flag: NONE this flag should not affect communal given that it has only 2 scenes. Change-Id: Ie3d0f2c09847d3d63f959a6007fd8f2c8c0da81c
-rw-r--r--packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt
index 557257d6bdc0..571b36639c9e 100644
--- a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt
+++ b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalContainer.kt
@@ -162,7 +162,6 @@ fun CommunalContainer(
initialScene = currentSceneKey,
canChangeScene = { _ -> viewModel.canChangeScene() },
transitions = sceneTransitions,
- enableInterruptions = false,
)
}