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

Commit 87477f59 authored by Zak Cohen's avatar Zak Cohen Committed by Android (Google) Code Review
Browse files

Merge "TaskView - add a getter for the bitmap data." into ub-launcher3-qt-r1-dev

parents 34828b19 bc4d2135
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -410,4 +410,11 @@ public class TaskThumbnailView extends View {

        return new ColorMatrixColorFilter(COLOR_MATRIX);
    }

    public Bitmap getThumbnail() {
        if (mThumbnailData == null) {
            return null;
        }
        return mThumbnailData.thumbnail;
    }
}