From: Richard Kimberly Heck Date: Mon, 1 Jun 2020 16:25:07 +0000 (-0400) Subject: Internal buffers are valid X-Git-Tag: 2.3.5~2 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=96dea61f22c04529e726cab36acf0240d41fa778;p=features.git Internal buffers are valid --- diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index 3ab5f33bc4..0935b06278 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -224,7 +224,7 @@ bool Inset::isBufferLoaded() const bool Inset::isBufferValid() const { return buffer_ - && (isBufferLoaded() || buffer_->isClone()); + && (isBufferLoaded() || buffer_->isInternal() || buffer_->isClone()); }