[Bf-blender-cvs] [ad083f925cd] master: GPencil: Rename `init_time` to `time_start`

Antonio Vazquez noreply at git.blender.org
Mon Jan 30 16:27:06 CET 2023


Commit: ad083f925cd74d1dacb3b8bbd04a8a806a293c38
Author: Antonio Vazquez
Date:   Mon Jan 30 16:27:00 2023 +0100
Branches: master
https://developer.blender.org/rBad083f925cd74d1dacb3b8bbd04a8a806a293c38

GPencil: Rename `init_time` to `time_start`

===================================================================

M	source/blender/makesrna/intern/rna_gpencil.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index dd608ce9acb..abb709473e1 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -1763,7 +1763,7 @@ static void rna_def_gpencil_stroke(BlenderRNA *brna)
   RNA_def_property_ui_text(prop, "Select Index", "Index of selection used for interpolation");
 
   /* Init time */
-  prop = RNA_def_property(srna, "init_time", PROP_FLOAT, PROP_TIME);
+  prop = RNA_def_property(srna, "time_start", PROP_FLOAT, PROP_TIME);
   RNA_def_property_float_sdna(prop, NULL, "inittime");
   RNA_def_property_clear_flag(prop, PROP_EDITABLE);
   RNA_def_property_ui_text(prop, "Init Time", "Initial time of the stroke");



More information about the Bf-blender-cvs mailing list