From f7b661b5547ec42392741dfcf91bd87c4a90c256 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Mon, 26 Feb 2024 15:47:23 -0500 Subject: [PATCH] Cleanup: Remove useless sculpt mask filter enum descriptions These don't add anything beyond the enum item names. Better to have nothing than waste people's time reading useless descriptions. --- .../sculpt_paint/sculpt_filter_mask.cc | 20 ++++++------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/source/blender/editors/sculpt_paint/sculpt_filter_mask.cc b/source/blender/editors/sculpt_paint/sculpt_filter_mask.cc index d9e3d9f7ba3..198161d3dba 100644 --- a/source/blender/editors/sculpt_paint/sculpt_filter_mask.cc +++ b/source/blender/editors/sculpt_paint/sculpt_filter_mask.cc @@ -41,20 +41,12 @@ enum eSculptMaskFilterTypes { }; static EnumPropertyItem prop_mask_filter_types[] = { - {MASK_FILTER_SMOOTH, "SMOOTH", 0, "Smooth Mask", "Smooth mask"}, - {MASK_FILTER_SHARPEN, "SHARPEN", 0, "Sharpen Mask", "Sharpen mask"}, - {MASK_FILTER_GROW, "GROW", 0, "Grow Mask", "Grow mask"}, - {MASK_FILTER_SHRINK, "SHRINK", 0, "Shrink Mask", "Shrink mask"}, - {MASK_FILTER_CONTRAST_INCREASE, - "CONTRAST_INCREASE", - 0, - "Increase Contrast", - "Increase the contrast of the paint mask"}, - {MASK_FILTER_CONTRAST_DECREASE, - "CONTRAST_DECREASE", - 0, - "Decrease Contrast", - "Decrease the contrast of the paint mask"}, + {MASK_FILTER_SMOOTH, "SMOOTH", 0, "Smooth Mask", ""}, + {MASK_FILTER_SHARPEN, "SHARPEN", 0, "Sharpen Mask", ""}, + {MASK_FILTER_GROW, "GROW", 0, "Grow Mask", ""}, + {MASK_FILTER_SHRINK, "SHRINK", 0, "Shrink Mask", ""}, + {MASK_FILTER_CONTRAST_INCREASE, "CONTRAST_INCREASE", 0, "Increase Contrast", ""}, + {MASK_FILTER_CONTRAST_DECREASE, "CONTRAST_DECREASE", 0, "Decrease Contrast", ""}, {0, nullptr, 0, nullptr, nullptr}, };