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:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2010-03-03 01:19:32 +0300
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2010-03-03 01:19:32 +0300
commitc26486f207eab2a82d02932d8ff2b7c19a307b95 (patch)
tree583ef3de5caf780fe44ea3a2b821cdff4f2c084e
parentd088bd80ea6e98092b9517636ed00f4ad85dec5f (diff)
Make object stat consistent with the rest of counters (selected-total).
-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 c88fc395efe..e3aa0e2e3e7 100644
--- a/source/blender/editors/space_info/info_stats.c
+++ b/source/blender/editors/space_info/info_stats.c
@@ -408,7 +408,7 @@ static void stats_string(Scene *scene)
}
else {
s += sprintf(s, "Ve:%d | Fa:%d | Ob:%d-%d | La:%d%s",
- stats->totvert, stats->totface, stats->totobj, stats->totobjsel, stats->totlamp, memstr);
+ stats->totvert, stats->totface, stats->totobjsel, stats->totobj, stats->totlamp, memstr);
}
if(ob)