From 5857000a652bc33ca27ec3c069e323b03e287fac Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Thu, 26 Dec 2024 16:02:13 +0100 Subject: [PATCH] I18n: Disambiguate "Normal" "Normal" means "ordinary", not "perpendicular". Issue reported by Hoang Duy Tran. --- source/blender/makesrna/intern/rna_brush.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_brush.cc b/source/blender/makesrna/intern/rna_brush.cc index 7855969d909..3442d16d49a 100644 --- a/source/blender/makesrna/intern/rna_brush.cc +++ b/source/blender/makesrna/intern/rna_brush.cc @@ -1900,6 +1900,7 @@ static void rna_def_gpencil_options(BlenderRNA *brna) RNA_def_property_enum_sdna(prop, nullptr, "fill_direction"); RNA_def_property_enum_items(prop, rna_enum_gpencil_fill_direction_items); RNA_def_property_ui_text(prop, "Direction", "Direction of the fill"); + RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_BRUSH); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_update(prop, 0, "rna_BrushGpencilSettings_update");