UI: Add sculpt stats to statusbar

This was missing from D9623. Now the same sculpt scene stats are also
displayed in the status bar.

Reviewed By: sergey

Differential Revision: https://developer.blender.org/D9700
This commit is contained in:
Pablo Dobarro 2020-12-01 22:22:13 +01:00
parent 82e401031f
commit 92e44ce67c
1 changed files with 17 additions and 6 deletions

View File

@ -559,12 +559,23 @@ static void get_stats_string(
stats_fmt->totgpstroke,
stats_fmt->totgppoint);
}
else if (stats_is_object_dynamic_topology_sculpt(ob)) {
*ofs += BLI_snprintf(info + *ofs,
len - *ofs,
TIP_("Verts:%s | Tris:%s"),
stats_fmt->totvert,
stats_fmt->tottri);
else if (ob && (object_mode & OB_MODE_SCULPT)) {
if (stats_is_object_dynamic_topology_sculpt(ob)) {
*ofs += BLI_snprintf(info + *ofs,
len - *ofs,
TIP_("Verts:%s | Tris:%s"),
stats_fmt->totvert,
stats_fmt->tottri);
}
else {
*ofs += BLI_snprintf(info + *ofs,
len - *ofs,
TIP_("Verts:%s/%s | Faces:%s/%s"),
stats_fmt->totvertsculpt,
stats_fmt->totvert,
stats_fmt->totfacesculpt,
stats_fmt->totface);
}
}
else {
*ofs += BLI_snprintf(info + *ofs,