Loading WallpaperPicker/src/com/android/launcher3/WallpaperPickerActivity.java +2 −2 Original line number Diff line number Diff line Loading @@ -846,9 +846,9 @@ public class WallpaperPickerActivity extends WallpaperCropActivity { int indexOfExistingTile = 0; for (; indexOfExistingTile < mWallpapersView.getChildCount(); indexOfExistingTile++) { FrameLayout thumbnail = (FrameLayout) mWallpapersView.getChildAt(indexOfExistingTile); Object tag = thumbNail.getTag(); Object tag = thumbnail.getTag(); if (tag instanceof UriWallpaperInfo && ((UriWallpaperInfo) tag).mUri.equals(uri)) { existingImageThumbnail = thumbNail; existingImageThumbnail = thumbnail; break; } } Loading Loading
WallpaperPicker/src/com/android/launcher3/WallpaperPickerActivity.java +2 −2 Original line number Diff line number Diff line Loading @@ -846,9 +846,9 @@ public class WallpaperPickerActivity extends WallpaperCropActivity { int indexOfExistingTile = 0; for (; indexOfExistingTile < mWallpapersView.getChildCount(); indexOfExistingTile++) { FrameLayout thumbnail = (FrameLayout) mWallpapersView.getChildAt(indexOfExistingTile); Object tag = thumbNail.getTag(); Object tag = thumbnail.getTag(); if (tag instanceof UriWallpaperInfo && ((UriWallpaperInfo) tag).mUri.equals(uri)) { existingImageThumbnail = thumbNail; existingImageThumbnail = thumbnail; break; } } Loading