Reload only if already loaded
parent
540b80f1e0
commit
7f60c60ebb
|
@ -364,9 +364,12 @@ export default {
|
||||||
delete row.pct;
|
delete row.pct;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Force reload all loaded images
|
||||||
if ((i < this.currentStart || i > this.currentEnd) && row.photos) {
|
if ((i < this.currentStart || i > this.currentEnd) && row.photos) {
|
||||||
for (const photo of row.photos) {
|
for (const photo of row.photos) {
|
||||||
photo.flag = (photo.flag & ~constants.FLAG_LOADED) | constants.FLAG_FORCE_RELOAD;
|
if (photo.flag & constants.FLAG_LOADED) {
|
||||||
|
photo.flag = (photo.flag & ~constants.FLAG_LOADED) | constants.FLAG_FORCE_RELOAD;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue