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

Commit 476be7bc authored by Jakob Schneider's avatar Jakob Schneider
Browse files

Fix issue where progress around icons is not shown

Bug: 332777576
Change-Id: Id53d0e35c38311e6ef65146321c6aa523c8820da
parent d477aced
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;
    }

    /**