Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4b2c8a8 authored by Rohit Goyal's avatar Rohit Goyal Committed by Android (Google) Code Review
Browse files

Merge "UI Improvement: Fix unexpected progress bar around app icon added to...

Merge "UI Improvement: Fix unexpected progress bar around app icon added to Workspace after unarchival." into main
parents e96d30bd 9ab4550a
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -330,12 +330,15 @@ public class AllAppsList {
                            PackageManagerHelper.getLoadingProgress(info),
                            PackageInstallInfo.STATUS_INSTALLED_DOWNLOADING);
                    applicationInfo.intent = launchIntent;
                    if (enableSupportForArchiving() && info.getActivityInfo().isArchived) {
                    if (enableSupportForArchiving()) {
                        // In case an app is archived, the respective item flag corresponding to
                        // archiving should also be applied during package updates
                        if (info.getActivityInfo().isArchived) {
                            applicationInfo.runtimeStatusFlags |= FLAG_ARCHIVED;
                        } else {
                            applicationInfo.runtimeStatusFlags &= (~FLAG_ARCHIVED);
                        }
                    }

                    mDataChanged = true;
                }
            }