Internal buffers are valid

This commit is contained in:
Richard Kimberly Heck 2020-06-01 12:25:07 -04:00
parent 2975a869d4
commit 96dea61f22

View File

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