Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2010-12-09 19:50:32 +0300
committerKent Mein <mein@cs.umn.edu>2010-12-09 19:50:32 +0300
commitb6c68777adff0ddf46befbca1f37caff22173e21 (patch)
treee249ca275b77186cace7dc281404c76c00efc637 /source/blender/editors/space_node
parent6cd849809df032c543da48580753453db20abf67 (diff)
A little more work on patch [#24814] Operators which have no decription
submitted by Murat Egretli Not actually a patch but talks about descriptions that are missing and some small fixes that are needed. Kent
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_state.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/node_state.c b/source/blender/editors/space_node/node_state.c
index 48801d4369d..cdb04ec373c 100644
--- a/source/blender/editors/space_node/node_state.c
+++ b/source/blender/editors/space_node/node_state.c
@@ -295,6 +295,7 @@ void NODE_OT_view_all(wmOperatorType *ot)
/* identifiers */
ot->name= "View All";
ot->idname= "NODE_OT_view_all";
+ ot->description= "Resize view so you can see all nodes";
/* api callbacks */
ot->exec= node_view_all_exec;