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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-12-27 19:35:37 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-12-27 19:35:37 +0300
commitc55c15bb775095a68ee3f2e68b052d2a8166417a (patch)
tree0f2d774ebea5c27b4529cc4f838ad41197447ac2
parentb3e68a83f30f7f9948a384d756aaf43eb055ab46 (diff)
Fix T59870: Can't select "Face area" in average normals operator.
Not sure why the mode prop was hidden at all, tbh...
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index c8b3296d0d7..27ff9333492 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -7940,7 +7940,6 @@ void MESH_OT_average_normals(struct wmOperatorType *ot)
ot->prop = RNA_def_enum(ot->srna, "average_type", average_method_items, EDBM_CLNOR_AVERAGE_LOOP,
"Type", "Averaging method");
- RNA_def_property_flag(ot->prop, PROP_HIDDEN);
RNA_def_int(ot->srna, "weight", 50, 1, 100, "Weight", "Weight applied per face", 1, 100);