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

Commit e1062a79 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[DesktopRepo] Log visible tasks when visible task count changes" into main

parents 4ac0db77 e9a41b4c
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -708,7 +708,13 @@ class DesktopRepository(
        }
        val newCount = getVisibleTaskCountInDesk(deskId)
        if (prevCount != newCount) {
            logD("VisibleTaskCount has changed from %d to %d", prevCount, newCount)
            logD(
                "VisibleTaskCount in deskId=%d has changed from %d to %d, visible tasks=%s",
                deskId,
                prevCount,
                newCount,
                desk.visibleTasks,
            )
            notifyVisibleTaskListeners(displayId, newCount)
            if (DesktopModeFlags.ENABLE_DESKTOP_WINDOWING_PERSISTENCE.isTrue()) {
                updatePersistentRepository(displayId)