mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-12 11:32:21 +00:00
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:
parent
3c2c0c182f
commit
858ccc413f
@ -57,7 +57,8 @@ namespace os = support::os;
|
|||||||
InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
|
InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
|
||||||
: InsetCommand(buf, p)
|
: InsetCommand(buf, p)
|
||||||
{
|
{
|
||||||
buffer().invalidateBibinfoCache();
|
buffer().invalidateBibfileCache();
|
||||||
|
buffer().removeBiblioTempFiles();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -115,6 +115,9 @@ What's new
|
|||||||
|
|
||||||
- Fix display of "Block" environment in Beamer presentations (bug 8094).
|
- 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
|
* DOCUMENTATION AND LOCALIZATION
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user