Merge "Set grid progress even when task count is 0." into tm-qpr-dev

This commit is contained in:
Pat Manning
2022-11-23 11:31:35 +00:00
committed by Android (Google) Code Review

View File

@@ -2769,13 +2769,9 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
* @param gridProgress 0 = carousel; 1 = 2 row grid.
*/
private void setGridProgress(float gridProgress) {
int taskCount = getTaskViewCount();
if (taskCount == 0) {
return;
}
mGridProgress = gridProgress;
int taskCount = getTaskViewCount();
for (int i = 0; i < taskCount; i++) {
requireTaskViewAt(i).setGridProgress(gridProgress);
}