diff --git a/quickstep/src/com/android/quickstep/views/RecentsViewUtils.kt b/quickstep/src/com/android/quickstep/views/RecentsViewUtils.kt index 80170a1b2b..4292daf291 100644 --- a/quickstep/src/com/android/quickstep/views/RecentsViewUtils.kt +++ b/quickstep/src/com/android/quickstep/views/RecentsViewUtils.kt @@ -525,6 +525,14 @@ class RecentsViewUtils(private val recentsView: RecentsView<*, *>) : DesktopVisi ) val modalPivot = PointF() getPivotsForScalingRectToRect(modalTaskBounds, selectedTaskBounds, modalPivot) + Log.d( + "b/407815700", + "onSelectedTaskViewUpdated\n" + + "modalTaskBounds: $modalTaskBounds\n" + + "selectedTaskBounds: $selectedTaskBounds\n" + + "modalScale: $modalScale\n" + + "modalPivot: $modalPivot", + ) newSelectedTaskView.modalScale = modalScale newSelectedTaskView.modalPivot = modalPivot diff --git a/quickstep/src/com/android/quickstep/views/TaskView.kt b/quickstep/src/com/android/quickstep/views/TaskView.kt index 21905dbda0..2fc50beffa 100644 --- a/quickstep/src/com/android/quickstep/views/TaskView.kt +++ b/quickstep/src/com/android/quickstep/views/TaskView.kt @@ -345,7 +345,7 @@ constructor( * The modalness of this view is how it should be displayed when it is shown on its own in the * modal state of overview. 0 being in context with other tasks, 1 being shown on its own. */ - protected var modalness = 0f + var modalness = 0f set(value) { if (field == value) { return