[Bf-blender-cvs] [1c375729c6e] greasepencil-object: Cleanup: Fix stupid typo error in previous commit

Antonio Vazquez noreply at git.blender.org
Sun Feb 25 11:42:00 CET 2018


Commit: 1c375729c6e7a9c05ddec03b20a5ed4e83aeef1d
Author: Antonio Vazquez
Date:   Sun Feb 25 11:40:40 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rB1c375729c6e7a9c05ddec03b20a5ed4e83aeef1d

Cleanup: Fix stupid typo error in previous commit

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

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

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

diff --git a/source/blender/makesrna/intern/rna_palette.c b/source/blender/makesrna/intern/rna_palette.c
index b8fc48ee89d..db1dee1f651 100644
--- a/source/blender/makesrna/intern/rna_palette.c
+++ b/source/blender/makesrna/intern/rna_palette.c
@@ -439,9 +439,9 @@ static void rna_def_palettecolor(BlenderRNA *brna)
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PAC_COLOR_FLIP_FILL);
 	RNA_def_property_ui_text(prop, "Flip", "Flip filling colors");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_Palette_dependency_update");
-	prop = RNA_def_property(srna, "use_dot", PROP_BOOLEAN, PROP_NONE);
 
 	/* deprecated - this data was moved to mode */
+	prop = RNA_def_property(srna, "use_dot", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PAC_COLOR_DOT);
 	RNA_def_property_ui_text(prop, "Use Dots", "Draw stroke using dots instead of lines");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_Palette_dependency_update");



More information about the Bf-blender-cvs mailing list