diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-03 14:54:01 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-03 14:54:01 +0200 |
commit | 7b10dbdcb4c9027cd6f4690d6d70a2f36b37ab26 (patch) | |
tree | 8c2dc037df8983a487c4f271a95e38c87f4711e3 /src/PixbufCache.vala | |
parent | 021b663419ce8524fe1bd3f928062bef96f215c4 (diff) | |
parent | e97c1ca41f345bcf57417f6dc06e0d42f3547443 (diff) |
Merge tag 'upstream/0.20.1'
Upstream version 0.20.1
Diffstat (limited to 'src/PixbufCache.vala')
-rw-r--r-- | src/PixbufCache.vala | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/PixbufCache.vala b/src/PixbufCache.vala index 8b8f276..0708f5e 100644 --- a/src/PixbufCache.vala +++ b/src/PixbufCache.vala @@ -265,6 +265,10 @@ public class PixbufCache : Object { return; } +#if TRACE_PIXBUF_CACHE + debug("%s %s fetched into pixbuf cache", type.to_string(), job.photo.to_string()); +#endif + encache(job.photo, job.pixbuf); // fire signal @@ -279,16 +283,14 @@ public class PixbufCache : Object { Photo photo = (Photo) object; if (in_progress.has_key(photo)) { - // Load is in progress, must cancel. + // Load is in progress, must cancel, but consider in-cache (since it was decached + // before being put into progress) in_progress.get(photo).cancel(); in_progress.unset(photo); + } else if (!cache.has_key(photo)) { continue; } - // only interested if in this cache - if (!cache.has_key(photo)) - continue; - decache(photo); #if TRACE_PIXBUF_CACHE |