mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Fixed: reloading cached image with style reload:1 hint
This commit is contained in:
parent
ea35e47aba
commit
a16f8a6f18
1 changed files with 7 additions and 2 deletions
|
@ -579,9 +579,11 @@ namespace NLGUI
|
||||||
string finalUrl;
|
string finalUrl;
|
||||||
if (it->type == ImgType)
|
if (it->type == ImgType)
|
||||||
{
|
{
|
||||||
CFile::moveFile(it->dest, tmpfile);
|
// there is race condition if two browser instances are downloading same file
|
||||||
//if (lookupLocalFile (finalUrl, file.c_str(), false))
|
// second instance deletes first tmpfile and creates new file for itself.
|
||||||
|
if (CFile::getFileSize(tmpfile) > 0)
|
||||||
{
|
{
|
||||||
|
CFile::moveFile(it->dest, tmpfile);
|
||||||
for(uint i = 0; i < it->imgs.size(); i++)
|
for(uint i = 0; i < it->imgs.size(); i++)
|
||||||
{
|
{
|
||||||
setImage(it->imgs[i].Image, it->dest);
|
setImage(it->imgs[i].Image, it->dest);
|
||||||
|
@ -3876,6 +3878,9 @@ namespace NLGUI
|
||||||
//
|
//
|
||||||
// 3/ if it doesn't work, display a placeholder and ask to dl the image into the cache
|
// 3/ if it doesn't work, display a placeholder and ask to dl the image into the cache
|
||||||
//
|
//
|
||||||
|
if (reloadImg && CFile::fileExists(image))
|
||||||
|
CFile::deleteFile(image);
|
||||||
|
|
||||||
image = "web_del.tga";
|
image = "web_del.tga";
|
||||||
addImageDownload(img, newImage, style);
|
addImageDownload(img, newImage, style);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue