From: Richard Kimberly Heck Date: Mon, 1 Jun 2020 16:23:14 +0000 (-0400) Subject: Internal buffers are valid X-Git-Tag: lyx-2.4.0dev-acb2ca7b~809 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9f5491baf98db4f4355cc06d106f2ef41d385424;p=features.git Internal buffers are valid --- diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index 2043436ba9..77a1449826 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -225,7 +225,7 @@ bool Inset::isBufferLoaded() const bool Inset::isBufferValid() const { return buffer_ - && (isBufferLoaded() || buffer_->isClone()); + && (isBufferLoaded() || buffer_->isInternal() || buffer_->isClone()); }