[Bf-blender-cvs] [2f0eb2b] master: Revert "Increase Smooth_View limit to 10.000"

Campbell Barton noreply at git.blender.org
Wed Aug 26 02:20:46 CEST 2015


Commit: 2f0eb2bfc6b2d97f912ce9538fc7d027a3efa801
Author: Campbell Barton
Date:   Wed Aug 26 09:35:33 2015 +1000
Branches: master
https://developer.blender.org/rB2f0eb2bfc6b2d97f912ce9538fc7d027a3efa801

Revert "Increase Smooth_View limit to 10.000"

This reverts commit 1ed1f2f3abd6cdb9134ca3f70c1d504c3fb66c50.

Waiting 10 seconds to change view isn't practical.
Further it expose issues where users can attempt to activate tools during view motion,
Some work, others give issues, this just isn't going to be properly supported.

View animation features are fine, but this isn't the purpose of the smooth-view option.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 6fa751a..f2e62e6 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3551,7 +3551,7 @@ static void rna_def_userdef_view(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "smooth_view", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "smooth_viewtx");
-	RNA_def_property_range(prop, 0, 10000);
+	RNA_def_property_range(prop, 0, 1000);
 	RNA_def_property_ui_text(prop, "Smooth View", "Time to animate the view in milliseconds, zero to disable");
 
 	prop = RNA_def_property(srna, "rotation_angle", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list