Internal buffers are valid

This commit is contained in:
Richard Kimberly Heck 2020-06-01 12:23:14 -04:00
parent 38ec7471e7
commit 9f5491baf9

View File

@ -225,7 +225,7 @@ bool Inset::isBufferLoaded() const
bool Inset::isBufferValid() const bool Inset::isBufferValid() const
{ {
return buffer_ return buffer_
&& (isBufferLoaded() || buffer_->isClone()); && (isBufferLoaded() || buffer_->isInternal() || buffer_->isClone());
} }