Temporarily comment out line 124 in the ImageCache class.

This commit is contained in:
Chris
2013-03-19 16:57:17 +00:00
parent ea94d76c0f
commit cdbb167be7

View File

@@ -121,7 +121,7 @@ public class ImageCache {
boolean mayEnlarge = Singletons.getModel().getPreferences().getPrefBoolean(FPref.UI_SCALE_LARGER); boolean mayEnlarge = Singletons.getModel().getPreferences().getPrefBoolean(FPref.UI_SCALE_LARGER);
BufferedImage original = getImage(key); BufferedImage original = getImage(key);
if (null == original) { if (null == original) {
CACHE.put(key, null); // This instructs cache to give up finding a picture if it was not found once // CACHE.put(key, null); // This instructs cache to give up finding a picture if it was not found once
return null; return null;
} }