mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 01:46:49 +00:00
Use getter for thumbnail from converted ThumbnailData in Java
Bug: 334825222 Test: NA - one for one conversion Flag: NA Change-Id: Ibad85c59d7696f177d0fb723b7fd5b8983ecc974
This commit is contained in:
@@ -186,7 +186,7 @@ public class KeyboardQuickSwitchTaskView extends ConstraintLayout {
|
||||
@NonNull ImageView thumbnailView,
|
||||
@ColorInt int backgroundColor,
|
||||
@Nullable ThumbnailData thumbnailData) {
|
||||
Bitmap bm = thumbnailData == null ? null : thumbnailData.thumbnail;
|
||||
Bitmap bm = thumbnailData == null ? null : thumbnailData.getThumbnail();
|
||||
|
||||
if (thumbnailView.getVisibility() != VISIBLE) {
|
||||
thumbnailView.setVisibility(VISIBLE);
|
||||
|
||||
Reference in New Issue
Block a user