[Bf-blender-cvs] [6b179c7f865] soc-2019-npr: LANPR: Image chaining threshold set higher bound.

YimingWu noreply at git.blender.org
Wed Jul 3 11:06:35 CEST 2019


Commit: 6b179c7f86536918bb4d58104d517c50a38ac48c
Author: YimingWu
Date:   Wed Jul 3 17:06:04 2019 +0800
Branches: soc-2019-npr
https://developer.blender.org/rB6b179c7f86536918bb4d58104d517c50a38ac48c

LANPR: Image chaining threshold set higher bound.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index ecca0a51fd6..c75b289e434 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7396,8 +7396,8 @@ static void rna_def_scene_lanpr(BlenderRNA *brna)
       prop,
       "Image Threshold",
       "Segments where their image distance between them lower than this will be chained together");
-  RNA_def_property_ui_range(prop, 0.0f, 0.1f, 0.001, 4);
-  RNA_def_property_range(prop, 0.0f, 0.1f);
+  RNA_def_property_ui_range(prop, 0.0f, 0.3f, 0.001, 4);
+  RNA_def_property_range(prop, 0.0f, 0.3f);
 
   /* here's the collection stuff.... */



More information about the Bf-blender-cvs mailing list