[Bf-blender-cvs] [e9a66386547] master: UI: Motion Tracking: Fix description of K2 coefficient

Ivan Perevala noreply at git.blender.org
Wed Sep 30 05:01:42 CEST 2020


Commit: e9a663865473db06941063b8ce75d6ff4b3d0884
Author: Ivan Perevala
Date:   Tue Sep 29 22:59:52 2020 -0400
Branches: master
https://developer.blender.org/rBe9a663865473db06941063b8ce75d6ff4b3d0884

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