UI: Add/Improve a few tooltips
See T51061
This commit is contained in:
@@ -1775,6 +1775,7 @@ class WM_OT_keyconfig_remove(Operator):
|
|||||||
|
|
||||||
|
|
||||||
class WM_OT_operator_cheat_sheet(Operator):
|
class WM_OT_operator_cheat_sheet(Operator):
|
||||||
|
"List all the Operators in a text-block, useful for scripting"
|
||||||
bl_idname = "wm.operator_cheat_sheet"
|
bl_idname = "wm.operator_cheat_sheet"
|
||||||
bl_label = "Operator Cheat Sheet"
|
bl_label = "Operator Cheat Sheet"
|
||||||
|
|
||||||
|
@@ -793,7 +793,7 @@ void OBJECT_OT_modifier_add(wmOperatorType *ot)
|
|||||||
|
|
||||||
/* identifiers */
|
/* identifiers */
|
||||||
ot->name = "Add Modifier";
|
ot->name = "Add Modifier";
|
||||||
ot->description = "Add a modifier to the active object";
|
ot->description = "Add a procedural operation/effect to the active object";
|
||||||
ot->idname = "OBJECT_OT_modifier_add";
|
ot->idname = "OBJECT_OT_modifier_add";
|
||||||
|
|
||||||
/* api callbacks */
|
/* api callbacks */
|
||||||
|
@@ -611,7 +611,7 @@ void WORLD_OT_new(wmOperatorType *ot)
|
|||||||
/* identifiers */
|
/* identifiers */
|
||||||
ot->name = "New World";
|
ot->name = "New World";
|
||||||
ot->idname = "WORLD_OT_new";
|
ot->idname = "WORLD_OT_new";
|
||||||
ot->description = "Add a new world";
|
ot->description = "Create a new world Data-Block";
|
||||||
|
|
||||||
/* api callbacks */
|
/* api callbacks */
|
||||||
ot->exec = new_world_exec;
|
ot->exec = new_world_exec;
|
||||||
|
@@ -670,7 +670,7 @@ static void SOUND_OT_mixdown(wmOperatorType *ot)
|
|||||||
|
|
||||||
/* identifiers */
|
/* identifiers */
|
||||||
ot->name = "Mixdown";
|
ot->name = "Mixdown";
|
||||||
ot->description = "Mixes the scene's audio to a sound file";
|
ot->description = "Mix the scene's audio to a sound file";
|
||||||
ot->idname = "SOUND_OT_mixdown";
|
ot->idname = "SOUND_OT_mixdown";
|
||||||
|
|
||||||
/* api callbacks */
|
/* api callbacks */
|
||||||
|
Reference in New Issue
Block a user