fix for crash adding empty object

This commit is contained in:
Campbell Barton 2011-11-29 01:05:26 +00:00
parent 0668ad2d55
commit 00afa59004

@ -326,7 +326,9 @@ Object *ED_object_add_type(bContext *C, int type, float *loc, float *rot, int en
DAG_id_type_tag(bmain, ID_OB);
DAG_scene_sort(bmain, scene);
if (ob->data) {
ED_render_id_flush_update(bmain, ob->data);
}
if(enter_editmode)
ED_object_enter_editmode(C, EM_IGNORE_LAYER);
@ -1809,7 +1811,9 @@ Base *ED_object_add_duplicate(Main *bmain, Scene *scene, Base *base, int dupflag
set_sca_new_poins_ob(ob);
DAG_scene_sort(bmain, scene);
if (ob->data) {
ED_render_id_flush_update(bmain, ob->data);
}
return basen;
}