rgheck wrote: > If a file fails to load, we do not try to load it again. The downside is > that, even if you fixed the problem, then LyX won't try to load it again in > that session. I tried resetting the failedtoload_ variable in > fileChanged(), but that didn't work, as it doesn't seem to get hit. I'm not > sure what to do here, but it isn't a huge issue.
What about storing std::time_t failedtoload_ = included_file.lastModified() or long failedtoload_ included_file.checksum() instead of a bool? Then you could check try to load again if the file has been modified in the meantime. Jürgen