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:
authorJoshua Leung <aligorith@gmail.com>2013-02-12 10:24:58 +0400
committerJoshua Leung <aligorith@gmail.com>2013-02-12 10:24:58 +0400
commit63d9ace6b816641ed27fc061fb256e033ca9f5ab (patch)
treea7e094c70db55fd141ea437ff204c2aef59a6f3d /source/blender/editors/space_info
parent86793fec42508e0e3a6dea0ef34490fd4bfda0f8 (diff)
Added a missing space (between separator and face count in object mode)
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/info_stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/info_stats.c b/source/blender/editors/space_info/info_stats.c
index 3f73fc2605a..b2a83b6c9aa 100644
--- a/source/blender/editors/space_info/info_stats.c
+++ b/source/blender/editors/space_info/info_stats.c
@@ -395,7 +395,7 @@ static void stats_string(Scene *scene)
s += sprintf(s, "Verts:%d | Tris:%d", stats->totvert, stats->tottri);
}
else {
- s += sprintf(s, "Verts:%d | Faces:%d| Tris:%d | Objects:%d/%d | Lamps:%d/%d%s",
+ s += sprintf(s, "Verts:%d | Faces:%d | Tris:%d | Objects:%d/%d | Lamps:%d/%d%s",
stats->totvert, stats->totface, stats->tottri, stats->totobjsel, stats->totobj, stats->totlampsel, stats->totlamp, memstr);
}