Fix for bug #10347: particles reset with orbit around selection

option, was doing unnecessary dependency graph calls.
This commit is contained in:
Brecht Van Lommel 2008-05-05 17:41:14 +00:00
parent b36fe51c7d
commit d5ffcda5dc

@ -3072,6 +3072,10 @@ static void set_trans_object_base_flags(TransInfo *t)
*/ */
Base *base; Base *base;
/* don't do it if we're not actually going to recalculate anything */
if(t->mode == TFM_DUMMY)
return;
/* makes sure base flags and object flags are identical */ /* makes sure base flags and object flags are identical */
copy_baseflags(); copy_baseflags();