[Bf-blender-cvs] [36c273b68cd] lanpr-under-gp: UI: Motion Tracking: Fix description of K2 coefficient

Ivan Perevala noreply at git.blender.org
Fri Oct 2 07:40:28 CEST 2020


Commit: 36c273b68cd35801b29a5ab1ebf4bb24dcce7cc3
Author: Ivan Perevala
Date:   Tue Sep 29 22:59:52 2020 -0400
Branches: lanpr-under-gp
https://developer.blender.org/rB36c273b68cd35801b29a5ab1ebf4bb24dcce7cc3

UI: Motion Tracking: Fix description of K2 coefficient

Fixed description of K2 coefficient. It is second coefficient

Reviewed By: Blendify

Differential Revision: https://developer.blender.org/D9050

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

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

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

diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c
index b8500264e12..1470879177e 100644
--- a/source/blender/makesrna/intern/rna_tracking.c
+++ b/source/blender/makesrna/intern/rna_tracking.c
@@ -1247,7 +1247,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna)
   prop = RNA_def_property(srna, "division_k2", PROP_FLOAT, PROP_NONE);
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_ui_range(prop, -10, 10, 0.1, 3);
-  RNA_def_property_ui_text(prop, "K2", "First coefficient of second order division distortion");
+  RNA_def_property_ui_text(prop, "K2", "Second coefficient of second order division distortion");
   RNA_def_property_update(prop, NC_MOVIECLIP | NA_EDITED, "rna_tracking_flushUpdate");
 
   /* Nuke distortion parameters */



More information about the Bf-blender-cvs mailing list