aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/util/ImageLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tv/util/ImageLoader.java')
-rw-r--r--src/com/android/tv/util/ImageLoader.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/tv/util/ImageLoader.java b/src/com/android/tv/util/ImageLoader.java
index 04bb478a..86bb94c1 100644
--- a/src/com/android/tv/util/ImageLoader.java
+++ b/src/com/android/tv/util/ImageLoader.java
@@ -292,7 +292,8 @@ public final class ImageLoader {
* Checks if a reload would be needed if the results of other was available.
*/
private boolean isReloadNeeded(LoadBitmapTask other) {
- return mMaxHeight >= other.mMaxHeight * 2 || mMaxWidth >= other.mMaxWidth * 2;
+ return (other.mMaxHeight != Integer.MAX_VALUE && mMaxHeight >= other.mMaxHeight * 2)
+ || (other.mMaxWidth != Integer.MAX_VALUE && mMaxWidth >= other.mMaxWidth * 2);
}
@Nullable