Merge "Set grid progress even when task count is 0." into tm-qpr-dev am: 82f05a857d am: 78fcf6aaeb
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/20508307 Change-Id: I4a6114da8e3789418c8a2f378e0d88d01c2f7703 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user