diff --git a/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java b/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java index 593bb508f9b01..a59c97e0d08df 100644 --- a/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java +++ b/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java @@ -494,7 +494,8 @@ public class ImageWallpaper extends WallpaperService { } if (mBackground != null) { RectF dest = new RectF(left, top, right, bottom); - // add a filter bitmap? + Log.i(TAG, "Redrawing in rect: " + dest + " with surface size: " + + mLastRequestedWidth + "x" + mLastRequestedHeight); c.drawBitmap(mBackground, null, dest, null); } } finally {