Backport fix for bug #8107. We need to invalidate the file

cache, not just the BibInfo cache, when we create a new BibTeX
inset.

Conflicts:

	src/insets/InsetBibtex.cpp
This commit is contained in:
Richard Heck 2012-04-01 18:21:22 -04:00
parent 3c2c0c182f
commit 858ccc413f
2 changed files with 5 additions and 1 deletions

View File

@ -57,7 +57,8 @@ namespace os = support::os;
InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
: InsetCommand(buf, p)
{
buffer().invalidateBibinfoCache();
buffer().invalidateBibfileCache();
buffer().removeBiblioTempFiles();
}

View File

@ -115,6 +115,9 @@ What's new
- Fix display of "Block" environment in Beamer presentations (bug 8094).
- Changes to BibTeX files not noticed when new BibTeX inset created
(bug 8107).
* DOCUMENTATION AND LOCALIZATION