Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-08-26 02:35:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-26 02:53:58 +0300
commit2f0eb2bfc6b2d97f912ce9538fc7d027a3efa801 (patch)
tree4fdd9ca89fd1f06509268dd23ae6cc0df797dd8b /source/blender/makesrna
parentc62ebefcfcabde0d3df98e65cf8c05e8319cc387 (diff)
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.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 6fa751a6765..f2e62e6f559 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);