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

Commit 5c143e7e authored by Skuhne's avatar Skuhne
Browse files

Unopened tasks should show the fullscreen item in recents

BUG: 19947524
Change-Id: I83d2143f312ed016264c8bc54fda31720100ff1f
parent a38dd32a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ public class TaskViewHeader extends FrameLayout {
        Rect display = mSsp.getWindowRect();
        Rect taskRect = mSsp.getTaskBounds(t.key.stackId);
        int resId = R.drawable.star;
        if (display.equals(taskRect)) {
        if (display.equals(taskRect) || taskRect.isEmpty()) {
            resId = R.drawable.vector_drawable_place_fullscreen;
        } else {
            boolean top = display.top == taskRect.top;