[Bf-blender-cvs] [5e2bb3eed28] temp-T96709-painting-target: Comments.

Jeroen Bakker noreply at git.blender.org
Wed Mar 30 08:19:31 CEST 2022


Commit: 5e2bb3eed28409975bc1e19e1dd7ff8ed9a5b1a4
Author: Jeroen Bakker
Date:   Wed Mar 30 08:17:34 2022 +0200
Branches: temp-T96709-painting-target
https://developer.blender.org/rB5e2bb3eed28409975bc1e19e1dd7ff8ed9a5b1a4

Comments.

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

M	source/blender/makesrna/intern/rna_sculpt_paint.c

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

diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index e6c1aef5cef..620e8e753f0 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -1042,7 +1042,7 @@ static void rna_def_paint_mode(BlenderRNA *brna)
   RNA_def_struct_path_func(srna, "rna_PaintModeSettings_path");
   RNA_def_struct_ui_text(srna, "Paint Mode", "Properties of paint mode");
 
-  /* property mode, sync API name with TexPaintSettings.mode */
+  /* Property mode, sync API name with TexPaintSettings.mode */
   prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_sdna(prop, NULL, "canvas_source");
   RNA_def_property_enum_items(prop, rna_enum_canvas_source_items);
@@ -1054,7 +1054,7 @@ static void rna_def_paint_mode(BlenderRNA *brna)
   RNA_def_property_ui_text(prop, "Source", "Source to select canvas from");
   RNA_def_property_update(prop, 0, "rna_PaintModeSettings_canvas_source_update");
 
-  /* property mode, sync API name with TexPaintSettings.canvas */
+  /* Property canvas, sync API name with TexPaintSettings.canvas */
   prop = RNA_def_property(srna, "canvas", PROP_POINTER, PROP_NONE);
   RNA_def_property_pointer_sdna(prop, NULL, "image");
   RNA_def_property_pointer_funcs(prop, NULL, NULL, NULL, "rna_PaintModeSettings_image_poll");



More information about the Bf-blender-cvs mailing list