Cleanup: copy paste error in tooltip

This commit is contained in:
2018-08-13 20:19:50 -04:00
parent 34c09bc21e
commit 721321bf9e
2 changed files with 2 additions and 2 deletions

View File

@@ -1704,7 +1704,7 @@ def write_rst_contents(basepath):
fw(".. toctree::\n") fw(".. toctree::\n")
fw(" :maxdepth: 1\n") fw(" :maxdepth: 1\n")
fw(" :caption: Application Modules\n") fw(" :caption: Application Modules\n\n")
app_modules = ( app_modules = (
"bpy.context", # note: not actually a module "bpy.context", # note: not actually a module

View File

@@ -2259,7 +2259,7 @@ void GPENCIL_OT_color_reveal(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name = "Show All Colors"; ot->name = "Show All Colors";
ot->idname = "GPENCIL_OT_color_reveal"; ot->idname = "GPENCIL_OT_color_reveal";
ot->description = "Unhide all hidden Grease Pencil gpencil_ colors"; ot->description = "Unhide all hidden Grease Pencil colors";
/* callbacks */ /* callbacks */
ot->exec = gpencil_color_reveal_exec; ot->exec = gpencil_color_reveal_exec;