[Bf-blender-cvs] [721321bf9e4] blender2.8: Cleanup: copy paste error in tooltip

Aaron Carlisle noreply at git.blender.org
Tue Aug 14 02:54:12 CEST 2018


Commit: 721321bf9e4f397ef795aa4f8d7674bd54ea3fe2
Author: Aaron Carlisle
Date:   Mon Aug 13 20:19:50 2018 -0400
Branches: blender2.8
https://developer.blender.org/rB721321bf9e4f397ef795aa4f8d7674bd54ea3fe2

Cleanup: copy paste error in tooltip

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

M	doc/python_api/sphinx_doc_gen.py
M	source/blender/editors/gpencil/gpencil_data.c

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

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index f17d5aa8ec0..0c179019e24 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1704,7 +1704,7 @@ def write_rst_contents(basepath):
 
     fw(".. toctree::\n")
     fw("   :maxdepth: 1\n")
-    fw("   :caption: Application Modules\n")
+    fw("   :caption: Application Modules\n\n")
 
     app_modules = (
         "bpy.context",  # note: not actually a module
diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index faeee4db169..752839e8dfa 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -2259,7 +2259,7 @@ void GPENCIL_OT_color_reveal(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Show All Colors";
 	ot->idname = "GPENCIL_OT_color_reveal";
-	ot->description = "Unhide all hidden Grease Pencil gpencil_ colors";
+	ot->description = "Unhide all hidden Grease Pencil colors";
 
 	/* callbacks */
 	ot->exec = gpencil_color_reveal_exec;



More information about the Bf-blender-cvs mailing list