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
path: root/source
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-05-23 22:01:43 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-05-23 22:01:43 +0400
commit0fcc6baa0b87c19bb39e39da932bfdf208cc67b3 (patch)
tree258ad8f654205e3c8a8a911ff220785af963ec43 /source
parent99b325cebf41054f046d98a7dcf9aea74e165f56 (diff)
Made display of object : bone : shapes unique for weight painting and armature posing
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index 593d9a75f9d..6881c2c39df 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -904,9 +904,9 @@ static void draw_selected_name(Scene *scene, Object *ob, rcti *rect)
}
}
if (name && markern)
- BLI_snprintf(info, sizeof(info), "(%d) %s %s <%s>", CFRA, ob->id.name + 2, name, markern);
+ BLI_snprintf(info, sizeof(info), "(%d) %s : %s <%s>", CFRA, ob->id.name + 2, name, markern);
else if (name)
- BLI_snprintf(info, sizeof(info), "(%d) %s %s", CFRA, ob->id.name + 2, name);
+ BLI_snprintf(info, sizeof(info), "(%d) %s : %s", CFRA, ob->id.name + 2, name);
else
BLI_snprintf(info, sizeof(info), "(%d) %s", CFRA, ob->id.name + 2);
}
@@ -942,9 +942,9 @@ static void draw_selected_name(Scene *scene, Object *ob, rcti *rect)
if (bone_name) {
if (markern)
- BLI_snprintf(info, sizeof(info), "(%d) %s : (%s) %s <%s>", CFRA, ob->id.name + 2, bone_name, shapes, markern);
+ BLI_snprintf(info, sizeof(info), "(%d) %s : %s %s <%s>", CFRA, ob->id.name + 2, bone_name, shapes, markern);
else
- BLI_snprintf(info, sizeof(info), "(%d) %s : (%s) %s", CFRA, ob->id.name + 2, bone_name, shapes);
+ BLI_snprintf(info, sizeof(info), "(%d) %s : %s %s", CFRA, ob->id.name + 2, bone_name, shapes);
}
else {
if (markern)