mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
Removing static Context access using LauncherAppState
> This ensures that LauncherAppState is only accessed in the presence of a valid context Bug: 33032833 Change-Id: I955e5cb022f8bd6374681ae6c0720a2666d5b750
This commit is contained in:
@@ -1613,8 +1613,7 @@ public class Workspace extends PagedView
|
||||
Utilities.THREAD_POOL_EXECUTOR.execute(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
final Point size = LauncherAppState.getInstance()
|
||||
.getInvariantDeviceProfile().defaultWallpaperSize;
|
||||
final Point size = LauncherAppState.getIDP(getContext()).defaultWallpaperSize;
|
||||
if (size.x != mWallpaperManager.getDesiredMinimumWidth()
|
||||
|| size.y != mWallpaperManager.getDesiredMinimumHeight()) {
|
||||
mWallpaperManager.suggestDesiredDimensions(size.x, size.y);
|
||||
|
||||
Reference in New Issue
Block a user