fixes 0003410: 0.17 Regression: recompute will make parts lose color and take a longer delay compared to FC0.16

This commit is contained in:
wmayer
2018-10-02 19:03:48 +02:00
parent 4cab61c54a
commit 93f06f8256
10 changed files with 112 additions and 35 deletions

View File

@@ -121,6 +121,14 @@ FeatureTest::~FeatureTest()
}
short FeatureTest::mustExecute(void) const
{
if (isTouched())
return 1;
return DocumentObject::mustExecute();
}
DocumentObjectExecReturn *FeatureTest::execute(void)
{