From: Richard Kimberly Heck Date: Wed, 12 Dec 2018 06:37:00 +0000 (-0500) Subject: There is no reason we should need to reload the bibinfo cache for X-Git-Tag: 2.3.3~133 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=af71ebff8e1f04c5e6f656c4ce0e4a270bbc07e1;p=features.git There is no reason we should need to reload the bibinfo cache for internal buffers. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index b72e01d0f3..7f3ded982e 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -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) {