[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54483] trunk/blender/source/blender/ editors/space_info/info_stats.c: Added a missing space ( between separator and face count in object mode)

Joshua Leung aligorith at gmail.com
Tue Feb 12 07:24:59 CET 2013


Revision: 54483
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54483
Author:   aligorith
Date:     2013-02-12 06:24:58 +0000 (Tue, 12 Feb 2013)
Log Message:
-----------
Added a missing space (between separator and face count in object mode)

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_info/info_stats.c

Modified: trunk/blender/source/blender/editors/space_info/info_stats.c
===================================================================
--- trunk/blender/source/blender/editors/space_info/info_stats.c	2013-02-12 05:09:35 UTC (rev 54482)
+++ trunk/blender/source/blender/editors/space_info/info_stats.c	2013-02-12 06:24:58 UTC (rev 54483)
@@ -395,7 +395,7 @@
 		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);
 	}
 




More information about the Bf-blender-cvs mailing list