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

Commit 293d6e85 authored by Tony Wickham's avatar Tony Wickham
Browse files

Fix typos caused by gerrit's inline editor.

Change-Id: Ie142f5c6b418ac775cc167787f8e372d5354b91a
(cherry picked from commit 1ea392f0bc30134a800be224d8fbcf1af63bb80b)
parent 2f5281b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -847,9 +847,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;
            }
        }