]> git.lyx.org Git - features.git/commitdiff
Internal buffers are valid
authorRichard Kimberly Heck <rikiheck@lyx.org>
Mon, 1 Jun 2020 16:23:14 +0000 (12:23 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Mon, 1 Jun 2020 16:23:20 +0000 (12:23 -0400)
src/insets/Inset.cpp

index 2043436ba93409edb22317a45ab8fc2ae469e2de..77a14498269b5a16af8d3f28cfb3515e7b0dfb20 100644 (file)
@@ -225,7 +225,7 @@ bool Inset::isBufferLoaded() const
 bool Inset::isBufferValid() const
 {
        return buffer_
-               && (isBufferLoaded() || buffer_->isClone());
+               && (isBufferLoaded() || buffer_->isInternal() || buffer_->isClone());
 }