Merge pull request #1928 from curlymorphic/1927

Model::isValueChanged correctly returns if sample exactness is used.
This commit is contained in:
Tres Finocchiaro
2015-04-24 12:55:43 +00:00

View File

@@ -255,7 +255,7 @@ public:
// has to be accessed by more than one object, then this function shouldn't be used.
bool isValueChanged()
{
if( m_valueChanged )
if( m_valueChanged || valueBuffer() )
{
m_valueChanged = false;
return true;