Commit: 83c17d8de8222aa3ae9960f7a4ae2f2aab4c75c2
Author: Julian Eisel
Date:   Fri Dec 16 01:20:18 2016 +0100
Branches: custom-manipulators
https://developer.blender.org/rB83c17d8de8222aa3ae9960f7a4ae2f2aab4c75c2

Don't limit manipulator scale to 200

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

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 507be64..be43ba7 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3489,7 +3489,7 @@ static void rna_def_userdef_view(BlenderRNA *brna)
 
        prop = RNA_def_property(srna, "widget_scale", PROP_INT, PROP_NONE);
        RNA_def_property_int_sdna(prop, NULL, "manipulator_scale");
-       RNA_def_property_range(prop, 10, 200);
+       RNA_def_property_range(prop, 10, SHRT_MAX);
        RNA_def_property_int_default(prop, 75);
        RNA_def_property_ui_text(prop, "Scale", "Base size applied to scalable 
widgets");
        RNA_def_property_update(prop, 0, "rna_userdef_update");

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to