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:
authorMatt Ebb <matt@mke3.net>2008-03-11 08:31:50 +0300
committerMatt Ebb <matt@mke3.net>2008-03-11 08:31:50 +0300
commiteed5a7ec33a8638da10141d4c79f4e23ac11c1f4 (patch)
tree957e5810620eecfb2be3e2587fa56944a4f92bea /source/blender/src/drawnode.c
parentef98283f6a6e32a40fdb6f8be48550ef5505c563 (diff)
Tiny tweak, added a space in the node title between custom name and node type.
Diffstat (limited to 'source/blender/src/drawnode.c')
-rw-r--r--source/blender/src/drawnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawnode.c b/source/blender/src/drawnode.c
index 8638cb9d837..916ae7fbfdc 100644
--- a/source/blender/src/drawnode.c
+++ b/source/blender/src/drawnode.c
@@ -2947,7 +2947,7 @@ static void node_draw_basis(ScrArea *sa, SpaceNode *snode, bNode *node)
if(node->flag & NODE_MUTED)
sprintf(showname, "[%s]", node->name);
else if(node->username[0])
- sprintf(showname, "(%s)%s", node->username, node->name);
+ sprintf(showname, "(%s) %s", node->username, node->name);
else
BLI_strncpy(showname, node->name, 128);