[#20587] Time field under Stamp (rendering) is always showing 00:00:00.01

This commit is contained in:
2010-01-10 10:50:11 +00:00
parent 508371001a
commit e26005795d
2 changed files with 3 additions and 1 deletions

View File

@@ -634,6 +634,8 @@ static PBVHNode *pbvh_iter_next(PBVHIter *iter)
iter->stacksize--;
node= iter->stack[iter->stacksize].node;
/* on a mesh with no faces this can happen
* can remove this check if we know meshes have at least 1 face */
if(node==NULL)
return NULL;

View File

@@ -2241,7 +2241,7 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
prop= RNA_def_property(srna, "stamp_time", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "stamp", R_STAMP_TIME);
RNA_def_property_ui_text(prop, "Stamp Time", "Include the current time in image metadata");
RNA_def_property_ui_text(prop, "Stamp Time", "Include the render frame as HH:MM:SS.FF in image metadata");
RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
prop= RNA_def_property(srna, "stamp_date", PROP_BOOLEAN, PROP_NONE);