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:
authorJoseph Eagar <joeedh@gmail.com>2022-04-25 22:15:48 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-04-25 22:15:48 +0300
commit296d734344139db6bc092082eaf6ee94458d5506 (patch)
treece1135fa94ac6e4885a554e963bc12b9de416dc3 /source/blender/editors
parent185d9627b3156d30596e19f611941c1ed0e88e5b (diff)
Sculpt: Remove hardcoded setting of
auto-iteration property in mask filter Note: Auto-iteration is still set manually for increase/decrease contrast. These should probably become their own operators.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_filter_mask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_filter_mask.c b/source/blender/editors/sculpt_paint/sculpt_filter_mask.c
index 172c1f44e47..ea3f56d0859 100644
--- a/source/blender/editors/sculpt_paint/sculpt_filter_mask.c
+++ b/source/blender/editors/sculpt_paint/sculpt_filter_mask.c
@@ -296,7 +296,7 @@ void SCULPT_OT_mask_filter(struct wmOperatorType *ot)
RNA_def_boolean(
ot->srna,
"auto_iteration_count",
- false,
+ true,
"Auto Iteration Count",
"Use a automatic number of iterations based on the number of vertices of the sculpt");
}