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

Commit 5497138a authored by Ching-Sung Li's avatar Ching-Sung Li Committed by Automerger Merge Worker
Browse files

Fix blank bottom action bar when setting Grid after unlock screen am: 0c3d74bc

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/ThemePicker/+/13183551

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I8bc2fc55fe3ac438b571d66d7323e3fc74dc678b
parents 513bc914 0c3d74bc
Loading
Loading
Loading
Loading
+27 −25
Original line number Diff line number Diff line
@@ -148,6 +148,7 @@ public class WallpaperPreviewer implements LifecycleObserver {
    private void setUpWallpaperPreview() {
        ImageView homeImageWallpaper = mWallpaperSurfaceCallback.getHomeImageWallpaper();
        if (mWallpaper != null && homeImageWallpaper != null) {
            homeImageWallpaper.post(() -> {
                boolean renderInImageWallpaperSurface = !(mWallpaper instanceof LiveWallpaperInfo);
                mWallpaper.getThumbAsset(mActivity.getApplicationContext())
                        .loadPreviewImage(mActivity,
@@ -176,6 +177,7 @@ public class WallpaperPreviewer implements LifecycleObserver {
                                mWallpaperColorsListener::onWallpaperColorsChanged);
                    }
                }
            });
        }
    }