]> git.lyx.org Git - features.git/commitdiff
There is no reason we should need to reload the bibinfo cache for
authorRichard Kimberly Heck <rikiheck@lyx.org>
Wed, 12 Dec 2018 06:37:00 +0000 (01:37 -0500)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 14 Dec 2018 15:43:30 +0000 (10:43 -0500)
internal buffers.

src/Buffer.cpp

index b72e01d0f326a552b016f67e805b21b56ddea29b..7f3ded982e736af91b2eb1857f93187bcefdfe98 100644 (file)
@@ -2493,6 +2493,9 @@ void Buffer::clearBibFileCache() const
 
 void Buffer::reloadBibInfoCache() const
 {
+       if (isInternal())
+               return;
+
        // use the master's cache
        Buffer const * const tmp = masterBuffer();
        if (tmp != this) {