Cycles: revert fix for integrator preset refresh, it causes continuous

redraw leading to high cpu usage, need to find better solution.
This commit is contained in:
Brecht Van Lommel 2011-09-01 22:53:11 +00:00
parent 1f7ac51c36
commit 5feb921eba

@ -1378,7 +1378,7 @@ static void rna_property_update(bContext *C, Main *bmain, Scene *scene, PointerR
* but this isnt likely to be a performance problem. */
int RNA_property_update_check(PropertyRNA *prop)
{
return ((prop->magic != RNA_MAGIC) || (prop->flag & PROP_IDPROPERTY)|| prop->update || prop->noteflag);
return ((prop->magic != RNA_MAGIC) || prop->update || prop->noteflag);
}
void RNA_property_update(bContext *C, PointerRNA *ptr, PropertyRNA *prop)