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

Commit 221117bc authored by Jakob Schneider's avatar Jakob Schneider Committed by Android (Google) Code Review
Browse files

Merge "Fix issue where progress around icons is not shown" into main

parents c752dd03 476be7bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -912,7 +912,7 @@ public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
    @Nullable
    public PreloadIconDrawable applyProgressLevel() {
        if (!(getTag() instanceof ItemInfoWithIcon)
                || !((ItemInfoWithIcon) getTag()).isActiveArchive()) {
                || ((ItemInfoWithIcon) getTag()).isInactiveArchive()) {
            return null;
        }

+3 −3
Original line number Diff line number Diff line
@@ -168,9 +168,9 @@ public abstract class ItemInfoWithIcon extends ItemInfo {
        return (runtimeStatusFlags & FLAG_ARCHIVED) != 0;
    }

    /** Returns true if the app is archived and has an active install session. */
    public boolean isActiveArchive() {
        return isArchived() && (runtimeStatusFlags & FLAG_INSTALL_SESSION_ACTIVE) != 0;
    /** Returns true if the app is archived and doesn't have an active install session. */
    public boolean isInactiveArchive() {
        return isArchived() && (runtimeStatusFlags & FLAG_INSTALL_SESSION_ACTIVE) == 0;
    }

    /**